Extjs与KindEditor集成,请高手赐教!单个示例可以实现:
new Ext.form.FormPanel({
            title:'abc',
            renderTo: Ext.getBody(),
            autoHeight:true,
            items: [
            {
                xtype: 'textarea',
                name: 'KEz',
                autoHeight:true,
                fieldLabel: '使用FE',
                listeners: {
                    render: function() { KE.show({ id: this.name }); }
                }
            }
            ]
        });如果这样:KindEditor放到formPanel里,formPanel放到window里怎么就不可以了呢?