先来个扩展
$.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) {
console.info(value);
$(target).datebox('setValue', value);//设置新值的日期格式
},
resize: function (target, width) {
$(target).datebox('resize', width);
}
}
});
关健的一点就是datagrid中datebox的显示格式一定要与datagrid中的格式相同,如databox的格式为:2016-08-04 ,那里 这一列的数据格式也必须为这个格式,如“qgdata1":"2016-01-03"
以下是所有全部代码
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ondate.aspx.cs" Inherits="ondate.ondate.ondate" %>
&l