0

I have to display the grid date as a datetime ex: 07-August-2012 09:30:00 with the full date and time. Every-time I use the formatter d-M-y h:m:ss I get junk values. Please help, I am working on creating a jqGrid in IBM BPM7.5 and the srcformat is d/m/yyyy.

4

1 回答 1

1

要格式化07-August-2012 09:30:00您应该能够使用的日期:

d-F-Y H:i:s

根据jqGrid 文档,他们使用 PHP 日期格式化程序:

日期格式的定义使用 PHP 转换

因此,您可以查看PHP: date以获取支持的日期/时间格式选项的枚举。

这有帮助吗?

于 2012-08-07T21:02:19.653 回答