1

我在 jqgrid 中有列建模如下:

colModel: [
          ...
          { name: 'TranDate', index: 'TranDate', search: false, width: 150, 
            sorttype: 'date', formatter: 'date', 
            formatoptions: { srcformat: 'Y-m-d H:i:s A', newformat: 'd-M-Y h.i A'} },
         ...
         ],

从 JSON 返回的数据具有以下格式2012-07-06 3:25:19 PM,但是当使用上述格式显示在网格上时,它会切换PM到之间的AM时间除外。12:0112-59

这个问题类似于jqGrid 中的 AM/PM 日期格式,但即使进行了修改,问题仍然存在。

我错过了什么或做错了什么?

4

2 回答 2

0

之所以这样做,是因为它假设您的时间为 24 小时制。您的代码应该修复它,但我找不到它有什么问题。

但是,这里将为您解决

只是替换这个

formatter: 'date', formatoptions: { srcformat: 'Y-m-d H:i:s A', newformat: 'd-M-Y h.i A'} },

有了这个

datefmt: "Y-m-d h:i A" 

在这里,您将无法将“Ymd”更改为“dMY”。

于 2012-08-27T10:41:01.797 回答
0

问题是DateFormatjquery.fmatter.js 中的函数不支持 AM/PM srcformat

    // Tony Tomov
    // PHP implementation. Sorry not all options are supported.
    // Feel free to add them if you want
    DateFormat : function (format, date, newformat, opts)  {

具体来说,您可以在下面看到A解析给定日期时不支持该选项:

        } else {
            date = String(date).split(/[\\\/:_;.,\t\T\s-]/);
            format = format.split(/[\\\/:_;.,\t\T\s-]/);
            // parsing for month names
            for(k=0,hl=format.length;k<hl;k++){
                if(format[k] == 'M') {
                    dM = $.inArray(date[k],dateFormat.i18n.monthNames);
                    if(dM !== -1 && dM < 12){date[k] = dM+1;}
                }
                if(format[k] == 'F') {
                    dM = $.inArray(date[k],dateFormat.i18n.monthNames);
                    if(dM !== -1 && dM > 11){date[k] = dM+1-12;}
                }
                if(date[k]) {
                    ts[format[k].toLowerCase()] = parseInt(date[k],10);
                }
            }
            if(ts.f) {ts.m = ts.f;}
            if( ts.m === 0 && ts.y === 0 && ts.d === 0) {
                return "&#160;" ;
            }
            ts.m = parseInt(ts.m,10)-1;
            var ty = ts.y;
            if (ty >= 70 && ty <= 99) {ts.y = 1900+ts.y;}
            else if (ty >=0 && ty <=69) {ts.y= 2000+ts.y;}
            timestamp = new Date(ts.y, ts.m, ts.d, ts.h, ts.i, ts.s, ts.u);
        }

你有几个选择。如果您可以修改 Web 服务,则可以让它以不同的格式(例如 unix 时间戳)返回日期,或者让它以受支持的格式返回新的日期列。或者,您可以将此报告为 jqGrid 错误和/或修复这部分代码以支持 AM/PM 说明符。

于 2012-08-27T17:40:34.760 回答