ExtJs Ext.form.field.TextArea+Ckeditor 扩展富文本编辑器

ExtJs Ext.form.field.TextArea+Ckeditor 扩展富文本编辑器
Ext.define("MyApp.base.BaseTextArea", {
    extend: "Ext.form.field.TextArea",
    xtype: "BaseTextArea",
    
    editor: null,
    
    initComponent: function() {
        this.callParent();
        this.on("afterrender", this.handlerAfterrender);
    },
    
    handlerAfterrender: function(txa, eOpts) {
        var editor = CKEDITOR.replace(txa.getInputId());  
        CKFinder.setupCKEditor(editor,‘/ckeditor/‘);
        txa.editor = editor;
    },
    
    getSubmitValue: function() {
        this.editor.updateElement();
        return this.callParent();
    }
});
ExtJs Ext.form.field.TextArea+Ckeditor 扩展富文本编辑器

ExtJs Ext.form.field.TextArea+Ckeditor 扩展富文本编辑器

上一篇:jquery select 常用操作总结


下一篇:修改原查询与利用查询创建新查询