我正在实现YUI编辑器(2.8.2rc1),并且需要字体大小作为下拉菜单,就像字体名称一样。如果我们可以控制列出的字体大小(12,14,16,18,24,36),这是一个奖励。
根据示例,我有以下内容,由于两个原因无效:
它会删除所有其他按钮
var myConfig = {
height: '300px',
width: '600px',
dompath: true,
focusAtStart: true,
toolbar: {
buttons: [
{ type: 'select', label: '13', value: 'fontsize', disabled: true,
menu: [
{ text: '12' },
{ text: '14', checked: true },
{ text: '16' },
{ text: '18' },
{ text: '24' },
{ text: '36' }
]
}
]
}
};
var myEditor = new YAHOO.widget.Editor('editor', myConfig);
那么......如何在不影响其他按钮的情况下将此按钮从微调器更改为下拉列表?
答案 0 :(得分:0)
YUI编辑器本身不支持此功能。