Sha256: 58e617a2ad3cc98525daea451381a9a57a24ef695c3d6084a72d54791b8c7b8a

Contents?: true

Size: 526 Bytes

Versions: 2

Compression:

Stored size: 526 Bytes

Contents

Ext.define('FastUI.view.vfield.VTextArea',{
    extend: 'Ext.form.field.TextArea',

    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.callParent();
    },
    getFValue:function (key) {
        return this.valueObject[key];
    }
});

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fastui-0.1.3 app/assets/javascripts/fastui/app/view/vfield/VTextArea.js
fastui-0.1.2 app/assets/javascripts/fastui/app/view/vfield/VTextArea.js