使用箭头按钮移动选定的 SlickGrid 行
是否可以使用箭头键上下移动选定的行?拖放效果很好,但我的项目也需要使用键盘进行移动。
谢谢!
is it possible to move selected rows up and down using arrow keys? The drag and drop works great, but my project requires moving using a keyboard as well.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在选项对象中设置
enableCellNavigation: true
。如果您使用 Firebug 或类似工具检查单元格,您会注意到active
类值随着键盘按下而移动。所以问题是 CSS 格式
.active
,我不确定 SlickGrid 是否已经提供了它。set
enableCellNavigation: true
in the options object. If you inspect the cells with Firebug or the like you'll notice that theactive
class value moves along with your keyboard presses.So the thing is to CSS-format
.active
, I'm not sure whether SlickGrid provides it it already.