I am using cascading dropdowns, where one dropdown determines the data in
the next, etc...
If a dropdown has only one item in it, the SelectedIndexCh anged event is
never fired, even if you click on the dropdown and "reselect" the single
item. This also happens when there are multiple items in the DD with the
first item. You have to select another list item, then reselect the first
one to have the event fire. I have it set to AutoPostBack, but obviously it
is not in these situations. Is there a way to make the event happen in
these situations.
I tried the following (thinking it would force the user to select the item
and fire the event), but it still selected the single item.
ddTest.DataBind ()
ddTest.Selected Index = -1
Thanks
--
*************** *************** **
Jon Rosenberg
the next, etc...
If a dropdown has only one item in it, the SelectedIndexCh anged event is
never fired, even if you click on the dropdown and "reselect" the single
item. This also happens when there are multiple items in the DD with the
first item. You have to select another list item, then reselect the first
one to have the event fire. I have it set to AutoPostBack, but obviously it
is not in these situations. Is there a way to make the event happen in
these situations.
I tried the following (thinking it would force the user to select the item
and fire the event), but it still selected the single item.
ddTest.DataBind ()
ddTest.Selected Index = -1
Thanks
--
*************** *************** **
Jon Rosenberg
Comment