我是 Ext-Js 的新手,我从 github 获得了一个带有一些插件的 html 编辑器,现在我在编辑器上有一个按钮,它应该会弹出一个带有文本区域内容的警告框。
Ext.onReady(function() {
Ext.tip.QuickTipManager.init();
var top = Ext.create('Ext.form.Panel', {
frame:true,
title: 'HtmlEditor plugins',
bodyStyle: 'padding:5px 5px 0',
//width: 300,
fieldDefaults: {
labelAlign: 'top',
msgTarget: 'side'
},
items: [{
xtype: 'htmleditor',
fieldLabel: 'Text editor',
height: 300,
plugins: [
Ext.create('Ext.ux.form.plugin.HtmlEditor',{
enableAll: true
,enableMultipleToolbars: true
})
],
anchor: '100%'
}],
buttons: [{
text: 'Save'
},{
text: 'Cancel'
}]
});
top.render(document.body);
});
我知道我应该添加
handler:function(){alert(someextjscodehere)}
但我不知道是什么函数返回它,我也无法在谷歌上找到它......