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
vamsi@sfvamsi@sf 

Is it possible to get a drop down with multiselect enabled using any vf component?

I ve tried selectList in the following way

 

<apex:selectList value="{!selectedOptions}" multiselect="true">
<apex:selectOptions value="{!availableOptions}"/>
</apex:selectList><p/>

 

It displays all values at a time..

 

I want the feature of drop down which displays all options with vertical scroll bar and also allow to select more than 1 option.

 

If there are any other ways plz tell me

 

Any help is appreciated.

sfdcfoxsfdcfox

Add size="x" (a number) to cause a scrollbar to appear.