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
anup-prakashanup-prakash 

rerender output panel onchange event of selectlist

currently what I have implemented is that a person selects a single Item in a select list and  once clicks sublit the outputpanel fields are ... but I do not wish to use the submit /comand uton.. is there a way by which I can rerender the output panel onchange event of the select list.

Best Answer chosen by Admin (Salesforce Developers) 
Avidev9Avidev9
you can always use action support with an event "onchange" and leave the action as blank.
Have a look on this
http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_actionSupport.htm

All Answers

Avidev9Avidev9
you can always use action support with an event "onchange" and leave the action as blank.
Have a look on this
http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_actionSupport.htm
This was selected as the best answer
anup-prakashanup-prakash

I had to put the action as well because on its action the data was fetched.. But it was certainly what I was looking for.. Thanks