How to make CalendarExtender before ModalPopupExtender?

How to make CalendarExtender extending TextBox placed inside ModalPopupExtender to show before ModalPopupExtender?

+3
source share
3 answers

Add this javascript bit to your page:

    function calendarShown(sender, args)
    {
        sender._popupBehavior._element.style.zIndex = 10005;
    }

And then in the attributes for your calendar expander add:

OnClientShown="calendarShown"
+10
source

My CSS solution:

.ajax__calendar_container
{
    position: relative;
}
+2
source

Updating the Ajax library also resolved this issue.

0
source

Source: https://habr.com/ru/post/1721202/


All Articles