function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shashi kanaparthishashi kanaparthi 

rendering output panel based on multiple conditions

Hi,

I am trying to render output panel based on multiple conditions. I am using the below syntax in the output panel, its not working. 

Let me know what the issue is.

       rendered ="IF{(!Qlist[0].Conversion_Status__C!='Sent' AND !Qlist[0].IsSyncing==true),true,false}">
Mahesh DMahesh D
Hi Shashi,

You can try below code:
 
rendered ="{!IF((Qlist[0].Conversion_Status__C != 'Sent' AND Qlist[0].IsSyncing == true), true, false)}">

Regards,
Mahesh
shashi kanaparthishashi kanaparthi
Thanks mahesh, that worked.
Mahesh DMahesh D
Hi Shashi,

Glad it worked the solution provided.

Please mark it as solved by selected the best answer so that it will be helpful to others in the future.

Regards,
Mahesh
Adrian Robinson 4Adrian Robinson 4
A shorter hand version of this would be:
 
rendered ="{!(Qlist[0].Conversion_Status__C != 'Sent' && Qlist[0].IsSyncing == true)}">