Ext.define('FastUI.view.vfield.VHtmlEditor',{
extend: 'Ext.form.field.HtmlEditor',
valueObject: {},
winCtx:{},
winId:0,
rest:{},
width:650,
initComponent:function(){
this.fieldLabel = this.getFValue('title');
this.name = this.rest.getTableName() + '[' + this.getFValue('name') + ']';
this.disabled = this.getFValue('readonly');
this.allowBlank = true;
this.callParent();
},
getFValue:function (key) {
return this.valueObject[key];
}
});