function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nirmal ChristopherNirmal 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.'
V MANJUV MANJU
Go through this link: http://hisrinu.wordpress.com/2011/05/30/custom-multi-select-picklist-field-in-visualforce/