gpt4 book ai didi

jquery-plugins - 使用 Handsontable 时如何强制选定单元格进入编辑模式?

转载 作者:行者123 更新时间:2023-12-04 01:59:36 25 4
gpt4 key购买 nike

Handsontable 为选择单元格时提供了一些不错的 Hook ,但我似乎无法找到方法来让我在选择单元格后强制进入编辑模式。

我可以像这样检测单元格选择:

Handsontable.PluginHooks.add( 'afterSelection', function( row, column ) {
var current_td = this.getCell( row, column );
});

从那里我什至可以获得被选中的单元格元素。但是从那里我似乎无法将单元格触发到编辑模式(其中有一个主动选择的 textarea 字段)。这通常由双击触发。做显而易见的事情似乎不起作用:
Handsontable.PluginHooks.add( 'afterSelection', function( row, column ) {
var current_td = this.getCell( row, column );

$(current_td).dblclick();
});

有没有其他人做过这个或对我如何让它工作有想法?

最佳答案

对于对这个问题感兴趣的任何人,现在有一种更好的可编程方式来实现相同的结果。

this.selectCell(row, col);
this.getActiveEditor().beginEditing();

这将选择 (row, col)单元格并进入编辑模式(即与双击或按 F2/Enter 相同)。

关于jquery-plugins - 使用 Handsontable 时如何强制选定单元格进入编辑模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18304026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com