AutoCompleteExtender inside ModalPopupExtender
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Can we use AutoCompleteExtender inside ModalPopupExtender?
-
Can we use AutoCompleteExtender inside ModalPopupExtender?
The auto complete list of the AutoCompleteExtender won't appear because it has a z-index value less than the modal popup for the ModalPopupExtender. You can fix this by setting the value of the z-index to a greater value just when the list is shown.
<ajax:AutoCompleteExtender ID="ace" runat="server" OnClientShown="ShowOptions">
</ajax:AutoCompleteExtender><script language="javascript" type="text/javascript">
function ShowOptions(sentder, args) {
sender._completionListElement.style.zIndex = 10003; // or greater than modal popup
}
</script>Help people,so poeple can help you.