Is this remotely possible at all? If so how would I do this?<apex:repeat value="{!listOfObjects}" var="object>
<apex:outputPanel rendered="{!IF(object.Custom_Field_With_Field_Value_Of_Red__c = Variable_Passed_in_by_URL, true, false)}">
1 respuesta
Yes, you can pass that variable to your visualforce page and then use it like this:<apex:outputPanel rendered="{!IF(object.Custom_Field_With_Field_Value_Of_Red__c = $CurrentPage.parameters.variable, true, false)}">