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
anil Kumaranil Kumar 

Pick list Values in VF page

Hi All,

I have 50 values in the pick-list but i need display only 10 pick-list values in the visualforce page. Please advise.

Thanks,
Anil Kumar 
Devanshu soodDevanshu sood
Hi Anil,

Use
options.remove(int index);
Like :- options.remove(0);
Thanks