jqgrid显示"对象"对于通过json查询返回的SQL时间数据类型

时间:2017-04-07 15:51:54

标签: jquery sql-server json jqgrid

我的SQL服务器输出格式化时间问题。 数据在json中检索," formatter" " formatoptions" 用于在JQGRID中填充日期和时间,如下所示: / p>

 {
            key: false, name: 'Date_Rencontre', index: 'Date_Rencontre', align: 'right', width: 90,
            formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y" }
        },
        {
            key: false, name: 'Heure_Debut', index: 'Heure_Debut', align: 'right', width: 100,
            formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "HH:mm" }
        },
        {
            key: false, name: 'Heure_Fin', index: 'Heure_Fin', align: 'right', width: 100,
            formatter: 'date', formatoptions: { srcformat: "ISO8601Long", newformat: "HH:mm" }
        },

日期部分工作正常,但时间部分显示" [对象]" 。 我尝试了多种选项和组合,其中大多数都返回"对象" " NaN"

请参阅下面的源数据和jqgrid显示enter image description here

enter image description here

0 个答案:

没有答案