为什么 jqGrid 不能转换序列化日期时间json?

Why jqGrid can't convert serialized datetime json?

你好, 在 jqGrid 上没有日期时间的 Everythink 完美 :S 如何解决这个转换问题?

您可以在 ColModel 中尝试这个

{name: 'colNmae', index: 'ColName', formatoptions: { srcformat: "ISO8601Long", newformat: "m/d/Y h:i A" }}

或者这个

{name: 'colNmae', index: 'ColName', sorttype: 'date', formatter: 'date', datefmt: 'd-M-Y'},

您需要在 colModel 中将格式化程序设置为日期,jqGrid 将自动检测 Microsoft 日期格式。

srcformat不需要设置,newformat可以。

试试这个:

colModel : [
...
{name:'Mydate', ...formatter: 'date', formatoptions:{newformat 'm/d/Y'}, ...},
...
]

这些列属性对我有用

formatter: "date", formatoptions: { newformat: "ISO8601Long" }