向 SlickGrid 添加自定义按钮?
是否有任何简单的 API 调用可以将自定义按钮添加到标题工具栏中的 SlickGrid?
另外,如果您可以评论我如何获取通过这样的按钮通过复选框过滤或选择的行,并做一些魔术并更改数据,我们将受到欢迎:)
Any easy API calls for adding custom button to SlickGrid in the header toolbar?
Also, if you could comment how do I get rows, that were filtered or selected via checkboxes via such a button and do some magic and alter data would be welcome :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关这两个问题的答案,请检查 slick.checkboxselectcolumn.js< /a> 插件。
您可以使用
grid.updateColumnHeader(myhtml)
方法更改列标题,其中myhtml
是您要插入到标题中的一些html片段(包括按钮)。如果您想检查选定的行,只需绑定到
grid.onSelectedRowsChanged()
事件即可。For the answer to both questions, check the slick.checkboxselectcolumn.js plugin.
You can alter the column header with the
grid.updateColumnHeader(myhtml)
methods, wheremyhtml
is some html fragment (including buttons) that you want to insert to the header.If you want to check the selected rows, just bind to the
grid.onSelectedRowsChanged()
event.