You need to sign in to do that
Don't have an account?

select options picklist display
hi all
i have tried to put some values into a picklist but the diplay i am getting is a full text field with scroll bar i dont want all the values to apeer fully i want it to be lika a picklist field whre in we can select the paricular option
<apex:column headerValue="lot number piclist">
<apex:selectlist >
<apex:selectOptions value="{!wrapper.options}" />
</apex:selectlist>
</apex:column>
Hi,
Try the below code snippet as reference:
<apex:column headerValue="lot number piclist">
<apex:selectlist size="1">
<apex:selectOptions value="{!wrapper.options}" />
</apex:selectlist>
</apex:column>
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
All Answers
Hi,
Try the below code snippet as reference:
<apex:column headerValue="lot number piclist">
<apex:selectlist size="1">
<apex:selectOptions value="{!wrapper.options}" />
</apex:selectlist>
</apex:column>
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
thank u navatar u r a mega contrubuter for salesforce
colud any body explain the logic about how to display the piclist value in apex class