SlickGrid 使用单元格按钮向上/向下行的最佳方式
我用按钮向上/下行搜索问题。 我正在尝试使用“grid.getCurrentCell”,但是当我单击按钮时,currentCell 尚未定义。
我该怎么做?
谢谢。
(抱歉我的英语不好)
I search an issue to up/down row with buttons.
I m trying to use 'grid.getCurrentCell' but when i click button currentCell is not yet define.
How can i do this ?
Thanks.
(sorry for my poor english)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用行的 ID 来完成此操作。创建行时,将按钮设置为
其中 23 是数据中的索引。您还可以通过调用以下命令来更新它:
或类似的东西,但这会更慢。
You can probably do this using the ID of your row. When you create the row, set the button to
<a onclick='moveUp(23)'><img src='up.gif'></a>
Where 23 is the index in your data. You could also update this by calling:
Or something similar, but that would be slower.