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' }
| ]
| });
|
|