[SalesForce] Displaying boolean values as images

I want to display boolean values as images.

I have a checkbox in a table, if it is checked it should display a tick mark image and if it isn't checked it should display a cross image.

Best Answer

Simplistically, you can do something like:

<apex:image URL="{!if(checked,"/img/checked.gif","/img/unchecked.gif")}/>

Where each icon represents a checked or unchecked box. The exact URL will differ, but the concept remains. There is a default checked and unchecked box, or you could use one of your own choosing by using static resources.

Related Topic