我通过在我的自定义格式化程序中扩展 jqgrid fmatter 来进行日期格式化。如果我喜欢这样,那么“查找”功能将不起作用。下面是示例 colModel 和自定义格式化程序函数。
colModel = {name:currentLevelInDate, label:"Period Beginning (GMT)", index:currentLevelInDate,sorttype: "date",datefmt: datefmt, formatter:"formatDate",
unformat: 'unformatDate', formatoptions: { newformat:newFormat, srcformat:srcFormat}}
formatDate : function(cellvalue, opts, rowObject) {
...
...
var op = $.extend({}, $.jgrid.formatter.date);
if(opts.colModel.formatoptions != undefined) {
op = $.extend({}, op, opts.colModel.formatoptions);
}
cellDisplayValue = $.fmatter.util.DateFormat(op.srcformat,cellvalue,op.newformat,op);
....
return cellDisplayValue;
}