网格上的 Slickgrid 自动滚动窗口单击
启用enableCellNavigation 后,首次单击并双击网格会立即向下滚动页面,以便单击的行位于屏幕顶部。这很烦人,因为这是预料之外的。有什么办法可以关掉这个吗?如果禁用enableCellNavigation,则无法选择行,因此这不是一个选项。
When enableCellNavigation is enabled, the initial click and double-click on my grid immediately scrolls the page down so that the clicked row is at the top of the screen. This is quite annoying since it is not expected. Is there some way to turn this off? If enableCellNavigation is disabled, rows cannot be selected so this is not an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
focusOnCurrentCell()
在我的例子中,单击时网格会水平滚动到末尾。
在函数
setSelectedCell(newCell,editMode)
中注释focusOnCurrentCell()
解决了我的问题。You are looking for
focusOnCurrentCell()
In my case grid was scrolling to the end horizontally when clicked.
Commenting the
focusOnCurrentCell()
inside the functionsetSelectedCell(newCell,editMode)
solved my problem.