jquery – 如何在jqgrid中更改日期格式

前端之家收集整理的这篇文章主要介绍了jquery – 如何在jqgrid中更改日期格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个与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 date format

原文链接:https://www.f2er.com/jquery/177752.html

猜你在找的jQuery相关文章