You need to sign in to do that
Don't have an account?
"AND" Function VisualForce page
Hi
anyone can help me to verify if my "and" function goes well, because doesnt work my code.
tks in advance
<apex:page standardController="QA_Order_Control__c" rendered="{(!QA_Order_Control__c.Line_Item_Brands_Opp_B__c== 'EMC')&&(!QA_Order_Control__c.OPS360_Status__c=='01.SentToOpps') }">
<script type="text/javascript">
{ window.alert("Ponte Chingon"); }
</script>
</apex:page>
anyone can help me to verify if my "and" function goes well, because doesnt work my code.
tks in advance
<apex:page standardController="QA_Order_Control__c" rendered="{(!QA_Order_Control__c.Line_Item_Brands_Opp_B__c== 'EMC')&&(!QA_Order_Control__c.OPS360_Status__c=='01.SentToOpps') }">
<script type="text/javascript">
{ window.alert("Ponte Chingon"); }
</script>
</apex:page>
Hope this helps! and Hope its the right syntax :D
Prady01
All Answers
Hope this helps! and Hope its the right syntax :D
Prady01
rendered="{!AND(QA_Order_Control__c.Line_Item_Brands_Opp_B__c== 'EMC', QA_Order_Control__c.OPS360_Status__c=='01.SentToOpps')}"
rendered="{!OR(QA_Order_Control__c.Line_Item_Brands_Opp_B__c== 'EMC', QA_Order_Control__c.OPS360_Status__c=='01.SentToOpps')}"
thx