Skip to main content

Posts

Showing posts from October, 2014

Displaying a picklist in Mulit Select Checkbox format in Salesforce

Hi All, Generally we provide flexibility to user so that user can select multiple value form a picklist at a time. This post is only for displaying a pick-list in multi select check-box format.   Here is the page:- <apex:page controller="multiselectCheckboxController ">     <style>     input[type='checkbox'] {         border: 1px solid #aaa;         display: block;     }     </style>    <apex:form>          <apex:pageBlock>         <apex:pageBlockSection columns="1">             <apex:pageblocksectionitem >                           <apex:outputlabel value="Industory" />                 <apex:selectcheckboxes layout="pageDirection" value="{!Industo...