本帖最后由 iyiou 于 2022-10-8 15:19 编辑
如何让这个代码执行撤销等功能
var config = GC.Spread.Sheets.Designer.DefaultConfig;
config.commandMap = {
Welcome: {
title: "Welcome",
text: "",
iconClass: "iconfont",
bigButton: "true",
commandName: "Welcome",
execute: function (context, propertyName, fontItalicChecked){
alert('Welcome to new designer.');
}
}
}
config.ribbon[0].buttonGroups.unshift({
"label": "NewDesigner",
"thumbnailClass": "welcome",
"commandGroup": {
"children": [
{
"direction": "vertical",
"commands": [
"Welcome"
]
}
]
}
});
var designer = new GC.Spread.Sheets.Designer.Designer(document.getElementById("gc-designer-container"), config);
document.getElementsByClassName("iconfont")[0].innerHTML = "";
|