我有一个与 jqgrid 相关的问题。我在 jqgrid 表中显示了日期,例如“FRI MAY 17 00:00:00 IST 2013”。我想将其格式更改为“17/5/2013”。我该怎么做?
{name:'checkin', index:'checkin', width:60, searchoptions:{sopt:['eq']}},
这是我的代码。
我有一个与 jqgrid 相关的问题。我在 jqgrid 表中显示了日期,例如“FRI MAY 17 00:00:00 IST 2013”。我想将其格式更改为“17/5/2013”。我该怎么做?
{name:'checkin', index:'checkin', width:60, searchoptions:{sopt:['eq']}},
这是我的代码。
试试这些:
formatter: 'date', formatoptions: { srcformat: 'd/m/Y', newformat: 'd/m/Y'}
在这里给出:JQgrid json 日期格式
试试这个:
formatter: 'date', formatoptions: { srcformat: 'l, F d, Y', newformat: 'd/m/Y'}
尝试这个!!!
{name:'checkin', index:'checkin', width:60, formatter: 'date',
formatoptions: { newformat: 'd/m/Y'},
searchoptions:{sopt:['eq']}},