Slickgrid 将按钮添加到列
我如何在列标题文本旁边的列中添加按钮,例如
[Father Name] -- heading in column
变得
[btn obj][Father Name]
非常感谢
How can i add a button in a column next to column heading text, e.g.
[Father Name] -- heading in column
becomes
[btn obj][Father Name]
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 slick.grid.js 中有一个钩子可以满足你想要做的事情。
如果您搜索 createColumnHeaders() 函数,您将看到一个可以在列标题文本之前/之后插入按钮的位置。
您真正需要做的就是添加一个包含按钮代码(或一些用于生成按钮的变量)的属性,然后就可以开始了。
There is a hook for what you want to do in slick.grid.js.
If you search for the createColumnHeaders() function, you will see a spot where you can insert your button before/after the column heading text.
All you really need to do is add a property that will have the button code (or some variables to generate the button), and you should be good to go.