继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jquery easyuior datebox问题

远看寒山石径斜
关注TA
已关注
手记 268
粉丝 25
获赞 149

点击编辑日期框为空,并且日期控件不能弹出,同时日期的设置不能被获取,如下图

解决办法:

在页面中,加入

 // datagrid editor datebox 设置
$.extend($.fn.datagrid.defaults.editors, {
        datebox: {
            init: function(container, options){
                var input = $('<input type="text">').appendTo(container);
                input.datebox(options);
                return input;
            },
            destroy: function(target){
                $(target).datebox('destroy');
            },
            getValue: function(target){
                return $(target).datebox('getValue');
            },
            setValue: function(target, value){
                $(target).datebox('setValue', value);
            },
            resize: function(target, width){
                $(target).datebox('resize', width);
            }
        }
});

搞定!!!

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP