Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RowBindingjqgrid中是否有类似“ ”的事件。在某些情况下,我需要image在客户端的每一行数据的列中添加一个标签。
RowBinding
image
像这样的东西,
RowBinding: function (rowId, rowData) { //After manipulating the data it should get bind to the grid. }
如果有其他选择,请指导我。
我建议您在需要放置图像的列中使用自定义格式化程序。通过自定义格式化程序的第三个参数 ( rowObject),您可以访问该行的所有值。如果您需要click对图像执行一些额外的操作,您可以另外使用beforeSelectRow回调。我建议您阅读答案和这个。
rowObject
click
beforeSelectRow