我在phonegap中使用了jqgrid.mobile。然后我遇到了一个问题。我从远程网址获取了json,例如“ 2013-11-11T10:06:27Z ”。我怎么能在jqgrid中格式化它? 这是我的代码,但它不起作用?
jQuery('#grid').jqGrid({
...
colNames:['checkin_time'],
"colModel":[
{"name":"checkin_time","index":"checkin_time","sorttype":"date","formatter":"date","formatoptions":{"srcformat":"Y-m-d H:i:s","newformat":"m/d/Y"}},
],
...