I have a GridView
control where if the user click on the auto-generated edit button. A window will pop up using modal pop-up extender with a drop down list for user to select. The problem is the SelectedIndexChanged
event will not fire if AutoPostBack
is set to false.
But if I set the AutoPostBack
to true the pop-up will go away without firing the SelectedIndexChanged
event.
Is it possible to have a control with AutoPostBack
set to true inside the modal pop-up?