我根据SlickGrid and Text Selection设置了enableTextSelectionOnCells。
我对此并不高兴。
以不良行为选择单元格文本。有时一旦选择完成,选择就会消失。只有在极少数情况下才有效。
有没有人遇到过这个问题?
我在Firefox和Chrome上试过这个。
重现:
git clone git@github.com:mleibman/SlickGrid.git
examples
文件夹example1-simple.html
enableTextSelectionOnCells: true
example1-simple.html
仅供参考,如果它应该有所不同,我在Ubuntu上运行。
答案 0 :(得分:2)
此问题已在Github上解决。你只需要修改slick.grid.js。在2270号线附近,您只需添加" options.editable&& &#34 ;.希望这有帮助。
if (!currentEditor) {
// if this click resulted in some cell child node getting focus,
// don't steal it back - keyboard events will still bubble up
// IE9+ seems to default DIVs to tabIndex=0 instead of -1, so check for cell clicks directly.
if (options.editable && e.target != document.activeElement || $(e.target).hasClass("slick-cell")) {
setFocus();
}
}