问题描述
- ligerui DateEditor时间控件实现赋值格式化和显示风格格式化
-
ligerui DateEditor时间控件实现赋值格式化和显示风格格式化,当只需要年月的时候界面不显示日期
解决方案
第一步:在定义日期控件时,在options{}里面加入format:"yyyy-MM" 这是定义空间赋值的格式化
第二步:在ligerui.all js文件里面找到ligerui月份加载和单击事件, g.body.monthselector.hover(function () { }, function ().....$("li", g.body.monthselector).click(function ().......... 重写ligerui月份加载和单击事件:
g.body.monthselector.hover(function () { }, function ()
{
var p = this.options;
if (p.format!="yyyy-MM") {
$(this).slideUp("fast");
}
});
$("li", g.body.monthselector).click(function ()
{
var index = $("li", g.body.monthselector).index(this);
g.currentDate.month = index + 1;
if (p.format!="yyyy-MM") {
g.body.monthselector.slideToggle();
}
g.bulidContent();
g.showDate();
if (p.format=="yyyy-MM") {
g.toggleDateEditor(true);
}
});
第三步:在时间控件的页面加入css代码:
.l-box-dateeditor-monthselector {
display:block;
}
大功告成:
![图片说明](http://img.ask.csdn.net/upload/201604/29/1461895461_388421.png)
时间: 2024-10-31 01:22:02