Problem with Dropdownlist.SelectedIndexChanged
I have a dropdownlist that will not fire in a particular situation.
It works properly except after I have changed the selectedIndex property through javascript.
1. User selects ddl item.
2. ddl.SelectedIndexChanged fires and sets default settings in textboxes
3. User changes from default in textboxes
4. javascript onchange event changes ddl.selectedindex to 0
(I understand that the onchange event for the ddl will not fire now and that's fine.)
5. User selects another ddl item.
6. ddl.SelectedIndexChanged DOES NOT FIRE. The page does postback though. and if I add a javascript onchange event, it will fire too.
|