{
xtype: 'htmleditor',
name: 'msg',
value : 'abcd',
id: 'myeditor',
listeners: {
afterrender: function(t2){
var but = Ext.create('Ext.Button', {
text: 'Click me',
handler: function() {
Ext.getCmp('myeditor').insertAtCursor('bbbb');
}
});
t2.getToolbar().add(but)
}
}
}
如果光标不在 html 编辑器中,我不会在 'abcd' 的末尾插入 'bbbb' ,如果光标在编辑器中的任何位置都不会在光标点插入 'bbbb'。你能帮我做这件事吗?