jqgrid 日期格式化程序示例?

发布于 2024-12-12 18:36:40 字数 52 浏览 0 评论 0原文

有没有人有使用日期格式化程序与服务器端数据库的示例,或者您能给我指出一些可以帮助的东西吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅笑轻吟梦一曲 2024-12-19 18:36:40

您可以在 jqGrid wiki 上找到有关预定义格式化程序的信息。

以下是如何在网格中使用日期格式的示例。 ShortDate 格式根据所选区域设置显示日期。您可以使用自己的格式,例如 Ymd H:i:s

srcformat 描述服务器发送的日期格式,newformat 描述所需的输出格式。

此示例包含 searchoptions,它将确保您的用户在网格上执行搜索时可以在日期选择器的帮助下选择所需的日期。

colModel :[ 
    { name:'startdate', index:'startdate', formatter:'date', 
        formatoptions: { srcformat:'m/d/Y', newformat:'ShortDate' }, 
        searchoptions: { sopt: ['eq','lt','le','gt','ge'],
            dataInit : function (elem) { 
                $(elem).datepicker({ changeMonth: true, changeYear: true, 
                    dateFormat: 'yy-mm-dd' }); 
            }
        }
    }
]

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 example Y-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.

colModel :[ 
    { name:'startdate', index:'startdate', formatter:'date', 
        formatoptions: { srcformat:'m/d/Y', newformat:'ShortDate' }, 
        searchoptions: { sopt: ['eq','lt','le','gt','ge'],
            dataInit : function (elem) { 
                $(elem).datepicker({ changeMonth: true, changeYear: true, 
                    dateFormat: 'yy-mm-dd' }); 
            }
        }
    }
]
此刻的回忆 2024-12-19 18:36:40

我们还可以在pozo类中获取日期的瞬态字段,如果日期不为空,则检查getter方法,然后将其转换为datetostring。此外,我们必须在使用此jqgrid的jsp中进行更改,我们必须采用瞬态字段而不是日期场地。

例子 :

(Pozo Class)

 transient private String indentDate_String;

  public String getIndentDate_String() 
  {
     if(indentDate != null)
     indentDate_String = DateConversion.dateToString(indentDate);
     return indentDate_String;
  }

jqgrid (jsp form):
colNames:['Indent Date'],
colModel:[      
 {name:'indentDate_String',index:'indentDate',autoheight: true, width:100},
]

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 :

(Pozo Class)

 transient private String indentDate_String;

  public String getIndentDate_String() 
  {
     if(indentDate != null)
     indentDate_String = DateConversion.dateToString(indentDate);
     return indentDate_String;
  }

jqgrid (jsp form):
colNames:['Indent Date'],
colModel:[      
 {name:'indentDate_String',index:'indentDate',autoheight: true, width:100},
]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文