13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Ext.define('Neptune.view.form.Fields', {
    extend: 'Ext.container.Container',
    xtype: 'formFields',
    id: 'formFields',
 
    items: [
        { xtype: 'textField' },
        { xtype: 'comboBox' },
        { xtype: 'dateField' },
        { xtype: 'numberField' },
        { xtype: 'searchField' },
        { xtype: 'checkboxes', width: 250 },
        { xtype: 'radioButtons', width: 250 },
        { xtype: 'textArea' },
        { xtype: 'htmlEditor' },
        { xtype: 'datepicker' }
    ]
});