i have ASP.NET login page in AJAX ModalPopupExtender. one of the text fields is company of the user. for this i used AJAX AutoCompleteExtender with web service. it works well but the issue is that i see the complition list in the back of the ModalPopupExtender.(see image).is it possible to fix it?
Asked
Active
Viewed 284 times
1
-
check the z-index of the overlay and the z-index of the list. The list must have a higher z-index – Legends Apr 20 '15 at 08:40
-
i tried it but the result is the same.add z-index of 99999 for list and z-index of 1 to overlay... – user281812 Apr 20 '15 at 08:47
-
check if the z-index does not get overriden by another css! z-index of the list. – Legends Apr 20 '15 at 08:50
-
i checked it and z-index is not overriden. – user281812 Apr 20 '15 at 08:53
-
can u make a small jsfiddle? – Legends Apr 20 '15 at 08:53
-
i dont know what is it... – user281812 Apr 20 '15 at 09:01
-
http://jsfiddle.net/ – Legends Apr 20 '15 at 09:13
-
thanks...fixed with z-index:999999 !important to complition list; – user281812 Apr 20 '15 at 09:18
-
You have the solution here: https://stackoverflow.com/questions/954892/asp-net-ajax-autocompleteextender-control-appears-behind-other-controls – rasputino Sep 24 '18 at 14:00