答案 0 :(得分:0)
有意思的是,我可以使用combobox
作为自定义按钮中的类型来实现结果。
setup: function (editor) {
editor.addButton('mybutton', function() {
var items= ["8", "9", "10", "11", "12", "14", "16", "18", "20", "22", "24", "26", "28", "36", "48", "72"]
return {
type: 'combobox',
autofocus: true,
label: 'FontSizes',
values: items,
onChange: function(e){
console.log(this.value());
}
}
}
答案 1 :(得分:0)
试试这个:
editor.addButton('mybutton', {
type: 'combobox',
icon: false,
text: 'FontSizes',
values: [{text: "8", value:"8"}, {text: "9", value:"9"}, {text: "10", value:"10"}, {text: "12", value:"12"}, {text: "14", value:"14"}, {text: "16", value:"16"}, {text: "18", value:"18"}],
onselect: function(e){
console.log(this.value());
}
});
编辑:添加演示