I have an issue where when my modal popup loads, tabbing is contained to only the popup. As soon as the user clicks my search button and the update panel inside the popup fires, the user can now tab to the page behind the popup. The modal popup extender
displays a asp.net panel that contains an update panel with a few controls inside of it. Everything is wrapped up in a UserControl and is placed inside the main page.
I looked for a DisableTabs(), but that must have been depreciated or something because that is not a method on the extender. I have tried to reset the tabIndex for my controls just before I call updatepanel.Update() but that didn't work either.
I am talking about pressing the tab key inside of the modal popup. It only works on the initial load...once an update panel fires to update the content in the popup, the user can tab to the background screen and they are not confined to just the popup.
rgn2121
Member
3 Points
31 Posts
ModalPopupExtender with Update Panel resetting tab index.
Mar 20, 2012 12:13 PM|LINK
I have an issue where when my modal popup loads, tabbing is contained to only the popup. As soon as the user clicks my search button and the update panel inside the popup fires, the user can now tab to the page behind the popup. The modal popup extender displays a asp.net panel that contains an update panel with a few controls inside of it. Everything is wrapped up in a UserControl and is placed inside the main page.
I looked for a DisableTabs(), but that must have been depreciated or something because that is not a method on the extender. I have tried to reset the tabIndex for my controls just before I call updatepanel.Update() but that didn't work either.
Does anyone have any suggestions?
BU XI - MSFT
All-Star
22367 Points
2704 Posts
Microsoft
Re: ModalPopupExtender with Update Panel resetting tab index.
Mar 22, 2012 04:44 AM|LINK
Hello
If you are talking about ajax control toolkit's tabs, you may try set_disable method.
Please refer to this post, http://ajaxcontroltoolkit.codeplex.com/workitem/20726
Otherwise, please explain what tabs you refer to.
If you have any feedback about my replies, please contact msdnmg@microsoft.com.
Microsoft One Code Framework
rgn2121
Member
3 Points
31 Posts
Re: ModalPopupExtender with Update Panel resetting tab index.
Apr 04, 2012 10:39 AM|LINK
I am talking about pressing the tab key inside of the modal popup. It only works on the initial load...once an update panel fires to update the content in the popup, the user can tab to the background screen and they are not confined to just the popup.