You need to sign in to do that
Don't have an account?
jucuzoglu
How do I access the current value of an APEX SelectList
I have an APEX select list on my page. And I would like to be able to load information via a SOQL query utilizing the selected value as a parameter.
How would I access the Select List value in my APEX?
For example does the visualforce tag have an ID attribute that I can then access somehow like ID.Value etc...
http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_selectList.htm
Are you taking how to access the list of values of the selected values? Either way the top example salesforce provides should suffice.
All Answers
http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_selectList.htm
Are you taking how to access the list of values of the selected values? Either way the top example salesforce provides should suffice.
Thank you for pointing me in the right direction. I used the example and did the following to make it work for me:
What this allowed me to do was create a List of an SObject that returned a dynamic SOQL query filtered by the selected item and display that value via a table. And if the value changes the table updates.
Thanks again