You need to sign in to do that
Don't have an account?
Nirmal Christopher
Help with Multiselect picklist in Visualforce page
This component renders a picklist value from the sobject
<apex:inputField value="{!Evaluation__c.Outcome__c}" ></apex:inputField>
this components renders picklist field in wich a value called 'None' is added
<apex:selectList value="{!nextStageSelection}" multiselect="false" size="1" label="Next Stage" >
<apex:selectOptions value="{!StageItems}"/>
</apex:selectList>
In the first picklist if i choose the value 'Rejected' then automatically 'None should be selected in the picklist value. I am not an expert in Java script. please help me. Thanks in advance.'
<apex:inputField value="{!Evaluation__c.Outcome__c}" ></apex:inputField>
this components renders picklist field in wich a value called 'None' is added
<apex:selectList value="{!nextStageSelection}" multiselect="false" size="1" label="Next Stage" >
<apex:selectOptions value="{!StageItems}"/>
</apex:selectList>
In the first picklist if i choose the value 'Rejected' then automatically 'None should be selected in the picklist value. I am not an expert in Java script. please help me. Thanks in advance.'
V MANJU
Go through this link: http://hisrinu.wordpress.com/2011/05/30/custom-multi-select-picklist-field-in-visualforce/