jqgrid 日期格式化程序示例?
有没有人有使用日期格式化程序与服务器端数据库的示例,或者您能给我指出一些可以帮助的东西吗?
Does anybody have an example of using the date formatter with a server side database, or can you point me to something to help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 jqGrid wiki 上找到有关预定义格式化程序的信息。
以下是如何在网格中使用日期格式的示例。
ShortDate
格式根据所选区域设置显示日期。您可以使用自己的格式,例如Ymd H:i:s
。srcformat
描述服务器发送的日期格式,newformat
描述所需的输出格式。此示例包含
searchoptions
,它将确保您的用户在网格上执行搜索时可以在日期选择器的帮助下选择所需的日期。You can find information about predefined formatters on the jqGrid wiki.
The following is an example of how date formatting can be used in the grid. The format
ShortDate
displays the date according to the selected locale. You can use your own formatting instead, for exampleY-m-d H:i:s
.srcformat
describes the format of the date as sent by the server,newformat
describes the desired output format.This example includes
searchoptions
which will make sure that your users can select the desired date with the help of a datepicker when performing a search on the grid.我们还可以在pozo类中获取日期的瞬态字段,如果日期不为空,则检查getter方法,然后将其转换为datetostring。此外,我们必须在使用此jqgrid的jsp中进行更改,我们必须采用瞬态字段而不是日期场地。
例子 :
We can also take the transient field of the date in pozo class and check in getter methed if date is not null then convert it into datetostring .Also we have to change in jsp where we used this jqgrid we have to take transient field instead of date field.
example :