我这边用您之前提供的代码测试了一下仍然是可以通过键盘上的del键正常触发的,见下图:
代码如下:
spread.commandManager().register(
"myClear",
{
canUndo: true,
execute: function (context, options, isUndo) {
console.log("myclear", 111111);
return true;
},
},
GC.Spread.Commands.Key.del
);
spread
.commandManager()
.setShortcutKey(
"myClear",
GC.Spread.Commands.Key.del,
false,
false,
false,
false
);
|