Sha256: e3316890b2e10101899ab3c542d0ee36bdfb2eb7cb67411c6402417ea13b98d3

Contents?: true

Size: 587 Bytes

Versions: 1

Compression:

Stored size: 587 Bytes

Contents

Ext.define('FastUI.view.vfield.VHtml',{
    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.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/VHtml.js