Sha256: 76bfd754a743185a05544887bda043ec5ae1d1c086e1239a5db477cc76d8bc28
Contents?: true
Size: 563 Bytes
Versions: 1
Compression:
Stored size: 563 Bytes
Contents
Ext.define('FastUI.view.vfield.VString',{ extend: 'Ext.form.field.Text', valueObject: {}, winCtx:{}, winId:0, rest:{}, initComponent:function(){ this.fieldLabel = this.getFValue('title'); this.name = this.rest.getTableName() + '[' + this.getFValue('name') + ']'; this.disabled = this.getFValue('readonly'); this.allowBlank = true; this.vtype = this.getFValue('vtype'); this.callParent(); }, getFValue:function (key) { return this.valueObject[key]; } });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastui-0.1.4 | app/assets/javascripts/fastui/app/view/vfield/VString.js |