您的位置:首页 > 其它

AjaxControlToolkit中的CalendarExtender被遮挡及日期格式本地化解决方法

2010-09-17 09:32 549 查看
/* from: http://hi.baidu.com/stockzh/blog/item/e833a94c3c5aedf2d62afc48.html */

在项目中的CSS中添加下面的样式,就可以解决CalendarExtender被DropList遮挡的问题。
.ajax__calendar {
position: relative;
left: 0px !important;
top: 0px !important;
visibility: visible;
display: block;
}
.ajax__calendar iframe
{
left: 0px !important;
top: 0px !important;
}

日期格式本地化
CalendarExtender本地化需要在ScriptManager 中添加
EnableScriptGlobalization="true" EnableScriptLocalization="true"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: