I have a simple RadComboBox with a few items in it. I have AutoPostBack="true" and am implementing the OnSelectedIndexChanged event in the code behind.
What I want to do is:
If the user selects a certain value in the dropdown, pop up a javascript warning message that allows the user to cancel the change. (like Confirm("Are you sure?");)
My problem is if I use OnClientSelectedIndexChanging, I don't have access to the NEW selected value. And in OnClientSelectingIndexChanged, I don't have a way to cancel the change (if they choose Cancel in the popup)
Is there any way to accomplish this?
Thanks,
Justin