]> git.proxmox.com Git - extjs.git/blame - extjs/examples/classic/neptune-components/app/view/form/Fields.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / neptune-components / app / view / form / Fields.js
CommitLineData
6527f429
DM
1Ext.define('Neptune.view.form.Fields', {\r
2 extend: 'Ext.container.Container',\r
3 xtype: 'formFields',\r
4 id: 'formFields',\r
5\r
6 items: [\r
7 { xtype: 'textField' },\r
8 { xtype: 'comboBox' },\r
9 { xtype: 'dateField' },\r
10 { xtype: 'numberField' },\r
11 { xtype: 'searchField' },\r
12 { xtype: 'checkboxes', width: 250 },\r
13 { xtype: 'radioButtons', width: 250 },\r
14 { xtype: 'textArea' },\r
15 { xtype: 'htmlEditor' },\r
16 { xtype: 'datepicker' }\r
17 ]\r
18});