如何在 Slickgrid 顶部添加新行?
如何在顶部添加新行而不是默认在底部,在 slickgrid dataview 实施中也很感谢有人提供删除行的示例。
How to add new row on top instead of defaulted to bottom, in slickgrid dataview impelmentation also it is appreciated someone provide example of deleting a row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个示例函数,将与示例 1-simple.html 示例一起使用。
在顶部添加行:
删除行,这是相同的想法。获取网格数据集合/切片数组以获取要删除的数据,然后调用 setData 并渲染...
Here is an example function that will work with the example 1-simple.html example..
To Add a Row at the top:
To Delete row, it is the same idea. Get the grid data collection/ slice the array to get the data out of you want to delete and then call setData and render...
有时拼接不起作用。尝试下面的代码:
然后您可以在单击按钮时调用此函数。
这确实有效。我自己也尝试过。
Sometimes Splice doesn't work. Try the code below:
and then you can call this function on button click.
This really works. I have tried it myself.