8

我有一个与 jqgrid 相关的问题。我在 jqgrid 表中显示了日期,例如“FRI MAY 17 00:00:00 IST 2013”​​。我想将其格式更改为“17/5/2013”​​。我该怎么做?

{name:'checkin', index:'checkin', width:60, searchoptions:{sopt:['eq']}},

这是我的代码。

4

3 回答 3

15

试试这些:

formatter: 'date', formatoptions: { srcformat: 'd/m/Y', newformat: 'd/m/Y'}

在这里给出:JQgrid json 日期格式

于 2013-05-18T12:25:24.363 回答
0

试试这个:

formatter: 'date', formatoptions: { srcformat: 'l, F d, Y', newformat: 'd/m/Y'}
于 2014-01-28T06:04:39.977 回答
0

尝试这个!!!

{name:'checkin', index:'checkin', width:60, formatter: 'date', 
     formatoptions: { newformat: 'd/m/Y'}, 
     searchoptions:{sopt:['eq']}},
于 2013-10-16T09:06:25.313 回答