You need to sign in to do that
Don't have an account?

How can use if else in visualforce page?
I want output or not output some tag in visualforce page.
How can use if else?
ex:
How can use if else?
ex:
<apex:repeat value="{!MapProducts[ikey]}" var="item"> {!if(item.id==0)} <div class="columnnull"> </div> {!else} <div class="column"> <div class="zoomimage"> </div> </div>

You can try Rerender in output penel like below
Let us know if this will help you