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

help:insert checkboxes or radiobuttons for output fields on visualforce page
how can i put checkboxes for <apex:outputfield> ?? the outfield contains fields from my standard controller ..i need to attach those fields with checkboxes
Can you be more clear?
what exactly you want to implement.
<apex:page StandardController="Prospect__c" extensions="conversionrtestclass">
<apex:pageBlock >
<apex:pageBlockSection >
<!--<apex:outputLabel value="Prospect Name" for=""></apex:outputLabel>-->
<apex:outputField value="{!leadList.Name}"/>
<apex:outputField value="{!leadList.First_Name__c}"/>
<apex:outputField value="{!leadList.Last_Name__c}"/>
<apex:outputField value="{!leadList.City__c}"/>
<apex:outputField value="{!leadList.Email__c}"/>
</apex:pageBlockSection>
<!--<apex:param name="id" value="{!id2}"/>
<apex:detail subject="{!id2}" />-->
</apex:pageblock>
<apex:pageBlock >
<apex:PageBlockSection title="People">
</apex:PageBlockSection>
<apex:pageBlockSection title="Household">
</apex:pageBlockSection>
<apex:pageBlockSection title="organisation">
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>