I have several DropDownLists on a page that all have AutoBind = false and set to query a remote data source.
The results shown in each DropDownList will be dependent on values chosen in the other DropDownLists, therefore in the change event I want to "reset" all the other dropdownlists, so that if they have already been bound the next time they are dropped down they will requery the remote dataSource.
I've managed to get the other dropdownlists to requery, but at the moment they all requery straight away, whereas I want them to wait until the user drops them down.
Is there a way to tell a DropDownList/DataSource that it should be cleared/reset, but not rebind yet, rather using the same behaviour as AutoBind=False?
The results shown in each DropDownList will be dependent on values chosen in the other DropDownLists, therefore in the change event I want to "reset" all the other dropdownlists, so that if they have already been bound the next time they are dropped down they will requery the remote dataSource.
I've managed to get the other dropdownlists to requery, but at the moment they all requery straight away, whereas I want them to wait until the user drops them down.
Is there a way to tell a DropDownList/DataSource that it should be cleared/reset, but not rebind yet, rather using the same behaviour as AutoBind=False?