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
相关问题
- gactions CLI crashes on Windows when uploading goo
- Pass code to a method as an argument
- change button color on-click and remains same for
- How to bind a dropdown list inside jqgrid row cell
- jQgrid filterToolbar fails with searchOnEnter
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: