现在我已经玩了几天jqgrid。我一直试图完成在这个例子http://www.the-di-lab.com/demo/apples上找到的东西,即在模态表格上放置日期选择器。
到目前为止,我已尝试按照我在此link上找到的内容进行操作,但我的ui.datepicker.js脚本中出现target.getAttribute is not a function
错误。
任何成功完成任务的人?
答案 0 :(得分:1)
不知道您或其他人是否还在寻求答案。 我刚刚通过使用列定义中的editoptions来实现这一点,如下所示:
... ,editoptions:{dataInit:datepicker}
其中,datepicker是一个类似
的函数 function datepicker (elem) {
jQuery(elem).datepicker(
// {} // options here
);
};