本帖最后由 Ellia.Duan 于 2024-2-1 11:23 编辑
我想要给comboBox下拉框绑定一个processKeyDown事件,但是绑定后并没有生效,当我在编辑框按下键盘时这个方法并没有触发, 代码如下
- const combo = new spreadNS.CellTypes.ComboBox();
- combo.items(this.iroPullDown).editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.value);
- combo.editable(true);
- combo.maxDropDownItems(4);
- // combo.activateEditor = this.activateEditor;
- combo.processKeyDown = function(event, context) {
- console.log("event", event);
- console.log("context", context);
- };
复制代码
|
|