$.extend($.fn.datagrid.defaults.editors,{
datetimebox:{
init:function(container,options){
var input = $('<input type="text">').appendTo(container);
options.editable = false;
input.datetimebox(options);
return input;
},
getValue:function(target){
return $(target).datetimebox('getValue');
},
setValue:function (target, value) {
$(target).datetimebox('setValue',value);
},
resize:function (target, width) {
$(target).datetimebox('resize',width);
},
destroy:function(target){
$(target).datetimebox('destroy');
}
}
});
Easyui datagrid在线编辑时没有提供带时分秒的datetimebox控件,需要自己扩展
最新推荐文章于 2020-07-29 10:06:55 发布