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
Priyanka  8Priyanka 8 

Trouble in using onselect with apex:selectlist tag.

I have a requirement where after selecting a value in picklist a popup window should come on screen asking "Do you want to save your changes?" with ok and cancel as buttons, and if the user selects ok then the content on page should not change, else it should. I have coded the logic and this method is called on onselect attribute with apex:seleclist tag in VF page, but it is not calling the method at all. Kindly share your ideas and solutions for this problem. Thank you in advance.
Ramu_SFDCRamu_SFDC
Make use of action support and onchange event something like this http://help.salesforce.com/apex/HTViewSolution?id=000003854&language=en_US
Priyanka  8Priyanka 8
I have already used onchange attribute to achieve other functionality on that apex:selectlist tag and it works fine. Any idea why that onselect event is not working with it??