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
Veni Thripura PuvvulaVeni Thripura Puvvula 

how to write a excat rerender tag syntax

How to write if clause in rerender tag



Thanks
kaustav goswamikaustav goswami
Are you looking for something like this

<apex:outputText value="Hello" rendered="{!IF(condition..., value if true...,value if false)}" />

Value if true and value if false would generally be true and false that would determine whether the component gets rendered on the page or not.

Thanks,
Kaustav
Veni Thripura PuvvulaVeni Thripura Puvvula
Thanks