JQGrid / 在“添加/编辑”窗口中选择的日期
内联编辑时,我已经能够将日期选择器放入 JQGrid 中,但我无法在添加/编辑窗口中使用它。 有人有关于如何执行此操作的说明或我可以查看的示例吗?
从该网站演示我正在尝试做的事情: http://www.the- di-lab.com/demo/apples
我读到我可以使用以下方法,但不确定如何集成它:
dataInit : function (elem) {
$(elem).datepicker();
}
I have been able to work the Date Picker into JQGrid when editing inline, but I am unable to use it inside the add/edit window. Does anyone have instructions on how to do this or an example I can look at?
demo from that site of what I am trying to do: http://www.the-di-lab.com/demo/apples
I read that I could use the following method but not sure how to integrate it:
dataInit : function (elem) {
$(elem).datepicker();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来他们正在使用“afterShowForm”将日期/颜色选择器附加到 div。
(查看源代码)
(查看源代码)
感谢您找到这个示例,我也在寻找如何做到这一点。
It looks like they are using 'afterShowForm' to attach a date/color picker to a div.
(view source)
(view source)
Thanks for finding this example, I was looking for how to do this as well.
使用此代码添加日期选择器以创建/编辑对话框:
Use this code to add datepicker to create/edit dialog:
添加日期选择器是一项简单的任务:
当然,您可以使用任何插件(例如 colorpicker 或自动完成)来代替
.datepicker
。Adding datepicker is an easy task:
Of couse, instead of
.datepicker
you can use any plugin like colorpicker or autocomplete.