我正在尝试修改handsontable doubleclick事件以获得其他功能。我目前的代码如下:
hot.view.wt.update('onCellDblClick', function (row,cell) {
console.log("sucess");
});
双击一个单元格时,这将成功触发。但是,它会删除单元格的当前编辑功能。
有没有办法在保持当前功能的同时更新单元格双击事件?
答案 0 :(得分:2)
好吧,我最终自己搞清楚了这个。所以我想我会在答案中给出答案的机会。
hot.view.wt.update('onCellDblClick', function (row,cell) {
//Get editor and begin edit mode on current cell (maintain current double click functionality)
var activeEditor = hot.getActiveEditor();
activeEditor.beginEditing();
//Do whatever you want...
});
感谢以下帖子中的答案,用于定义如何操作编辑器。
When using Handsontable how to force a selected cell into edit mode?