Posts

Showing posts from January, 2014
Image
Custom Dependent Picklist   You can create a custom dependent pick list in visualforce using the code below. Vf page : <apex:page controller="customPicklistController">     <apex:form >         <apex:pageBlock title="Custom Dependent Picklist">             <apex:pageBlockSection columns="1">                                 <apex:outputLabel value="State">                  <apex:selectList required="true" multiselect="false" size="1" label="State" value="      {!selectedValue}" id="state">              ...