如何使 CalendarExtender,扩展放置在 ModalPopupExtender 内的 TextBox,显示在 ModalPopupExtender 前面?

最佳答案

将这段 javascript 添加到您的页面:

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

然后在日历扩展器的属性中,添加:
OnClientShown="calendarShown"

关于asp.net - 如何让 CalendarExtender 显示在 ModalPopupExtender 前面?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1632120/

10-13 07:12