如何制作CalendarExtender,扩展位于ModalPopupExtender中的TextBox,以显示在ModalPopupExtender前面?
答案 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库也解决了这个问题