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
Vinay RamuVinay Ramu 

Display apex:column as checkbox

Need help as I want to display one of the conditional apex:column true or false values as checkbox.

In My Code below, I want to display custom column TRUE or FALSE as checkbox.
<apex:page controller="SObjectsListController">
    <apex:form >
        <apex:pageBlock title="List Of Objects">
            <apex:pageblockTable value="{!lstObjects}" var="f">
                <apex:column value="{!f}"><apex:facet name="header">Object Names</apex:facet></apex:column>
                <apex:column value="{!IF(FIND('__c',f,1)>1,TRUE,FALSE)}"><apex:facet name="header">Custom</apex:facet></apex:column>
            </apex:pageblockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>

Thanks,
Vinay