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

Checkbox display on VF page
Hi,
I have created a checkbox field and am displaying it on a visualforce page using inputField.
However, the checkbox seems to appear on the right side after the field label. Is there a way to put the checkbox on the left side before the field label?
Thanks!
Is it in a pageblocksectionitem?
Not sure if this will work but try this...
<apex:pageBlockSectionItem>
<apex:inputField value="{!field.name}" id="field"/>
<apex:outputLabel value="Field Label" for="field"/>
</apex:pageBlockSectionItem>
All Answers
Is it in a pageblocksectionitem?
Not sure if this will work but try this...
<apex:pageBlockSectionItem>
<apex:inputField value="{!field.name}" id="field"/>
<apex:outputLabel value="Field Label" for="field"/>
</apex:pageBlockSectionItem>
Thanks again!
try this
<apex:pageBlockSectionItem helpText="text here">
also, please mark my previous answer as the solution.
Thanks.