Sha256: 86f47969b0d4a02622d91154ce2390b7432b78f4643c4523a5bd72eb72926f0a

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

Ext.define('FastUI.view.VComment', {
    extend: 'Ext.form.Panel',
    title: 'Comment Form ',
    bodyPadding: 5,
    layout: 'anchor',
    fieldDefaults: {
        labelAlign: 'left',
        labelWidth: 90,
        anchor: '60%'
    },
    defaultType: 'textfield',
    border: true,
    items: [
        {
            xtype: 'textfield',
            name: 'm_comment[title]',
            fieldLabel: '名称'
        },
        {
            xtype: 'textareafield',
            name: 'm_comment[note]',
            fieldLabel: '描述'
        },
        {
            xtype: 'textfield',
            name: 'm_comment[guide]',
            fieldLabel: '指导'
        },
        {
            xtype: 'numberfield',
            name: 'm_comment[total]',
            fieldLabel: '总分'
        },
        {
            xtype: 'textareafield',
            name: 'm_comment[memo]',
            fieldLabel: '备注'
        }
    ],
    initComponent: function () {
        this.callParent();
    },
    addCriterion: function(){

    }
});







Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fastui-0.1.8 app/assets/javascripts/fastui/app/view/VCommentForm.js
fastui-0.1.7 app/assets/javascripts/fastui/app/view/VCommentForm.js
fastui-0.1.6 app/assets/javascripts/fastui/app/view/VCommentForm.js
fastui-0.1.4 app/assets/javascripts/fastui/app/view/VCommentForm.js
fastui-0.1.3 app/assets/javascripts/fastui/app/view/VCommentForm.js
fastui-0.1.2 app/assets/javascripts/fastui/app/view/VCommentForm.js