extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
17 lines • 449 B
JavaScript
Ext.define('Neptune.view.toolbar.widget.VerticalFields', {
extend: 'Ext.toolbar.Toolbar',
xtype: 'verticalFieldsToolbar',
vertical: true,
defaults: {
hideLabel: true
},
items: [
{ xtype: 'textField' },
{ xtype: 'comboBox' },
{ xtype: 'dateField' },
{ xtype: 'numberField' },
{ xtype: 'checkboxes' },
{ xtype: 'radioButtons' },
{ xtype: 'searchField' }
]
});