我已经实现了 jqgrid jquery 并应用了搜索日期,但没有过滤记录。下面是我的代码片段。
// jquery jqgrid part
{ name: 'DateUpdated', index: 'DateUpdated',
sorttype: 'date'
, sortable: true
, datefmt: 'm/d/Y', width: 220, formatter: ndateFormatter,
formatoptions: { srcformat: 'm/d/Y', newformat: 'm/d/Y' },
searchoptions: { sopt: ['eq'] }
}
// ------------------------------
function ndateFormatter(cellval, opts, rwdat, _act) {
var time = cellval.replace(/\/Date\(([0-9]*)\)\//, '$1');
var date = new Date();
date.setTime(time);
return (date.getMonth() + 1) + "/" + date.getDate() + "/" + date.getFullYear();
}
我还在搜索选项中应用了 datepicker,但它没有按日期过滤。