我有一个与jqgrid相关的问题。我在jqgrid表中显示日期,如“FRI MAY 17 00:00:00 IST 2013”。我想将其格式更改为“17/5/2013”。我可以这样做吗?
{name:'checkin', index:'checkin', width:60, searchoptions:{sopt:['eq']}},
这是我的代码。
答案 0 :(得分:13)
试试这些:
formatter: 'date', formatoptions: { srcformat: 'd/m/Y', newformat: 'd/m/Y'}
答案 1 :(得分:0)
试试这个!!!
{name:'checkin', index:'checkin', width:60, formatter: 'date',
formatoptions: { newformat: 'd/m/Y'},
searchoptions:{sopt:['eq']}},
答案 2 :(得分:0)
试试这个:
formatter: 'date', formatoptions: { srcformat: 'l, F d, Y', newformat: 'd/m/Y'}