JQgrid json日期格式

时间:2012-05-16 13:26:42

标签: date jqgrid format

我有一个通过Json字符串传递到我的JQGrid的日期,它看起来像

"31/10/2011"

我无法通过JQGrid documentation计算出格式。我只是想让它出现然后在网格中排序。

如果我在没有格式化的情况下发帖,日期看起来很好但是没有被识别为日期,因此排序都是错误的。

如果我将以下日期格式添加到列

formatter: 'date', formatoptions: { newformat: 'd/m/Y'}

我得到一个看起来像这样的日期

03/10/2031

我不能为我的生活找出问题所在,请帮忙。

1 个答案:

答案 0 :(得分:9)

formatter: 'date', formatoptions: { srcformat: 'd/m/Y', newformat: 'd/m/Y'}

排序问题