Sha256: f50ca88a37b79617f77264bbc13a8c95b04801a0ce655529af2aeefb88ecd225
Contents?: true
Size: 546 Bytes
Versions: 1
Compression:
Stored size: 546 Bytes
Contents
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]; } });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastui-0.1.3 | app/assets/javascripts/fastui/app/view/vfield/VHtmlEditor.js |