jqgrid EditActionIconsColumn 事件
我在网格中有一个 jqgrid,其中包含 EditActionsIconsColumn,但我试图获取“编辑”、“删除”和“提交”上的单击事件。 谢谢
I have a jqgrid with EditActionsIconsColumn available to me in the grid but I am trying to get a hold of the click events on the Edit, Del and Submit.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
formatter:'actions'
尚未得到很好的记录。当前版本的 jqGrid 3.8.2 支持您需要的一些选项。在jquery的第394-466行中。当前版本的fmatter.js 你可以看到更多。您需要的是
onEdit
、afterSave
(在“Submit”上)和delOptions.onclickSubmit
参数。说实话,我以前没有使用过“actions”格式化程序,为了理解它,我自己写了 演示也可以解决您的所有问题。为了让其他人更容易找到示例,请在此处包含代码的最重要部分:
The
formatter:'actions'
is not yet good documented. The current version of jqGrid 3.8.2 support some options which you need. In lines 394-466 of the jquery.fmatter.js of the current version you can see more.What you need are
onEdit
,afterSave
(on "Submit") anddelOptions.onclickSubmit
parameters.To tell the truth I didn't use the 'actions' formatter before and to understand it myself write the demo which solve also on all your questions. To make other easier to find the example in include the most important part of the code here: