如何在ModalPopupExtender前显示CalendarExtender?

时间:2009-10-27 16:38:20

标签: asp.net

如何制作CalendarExtender,扩展位于ModalPopupExtender中的TextBox,以显示在ModalPopupExtender前面?

3 个答案:

答案 0 :(得分:11)

将这一点javascript添加到您的页面:

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

然后在日历扩展程序的属性中添加:

OnClientShown="calendarShown"

答案 1 :(得分:2)

我的解决方案是CSS:

.ajax__calendar_container
{
    position: relative;
}

答案 2 :(得分:0)

更新Ajax库也解决了这个问题