extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
20 lines (19 loc) • 405 B
JavaScript
Ext.define('Neptune.view.form.widget.Basic', {
extend: 'Ext.form.Panel',
xtype: 'basicForm',
title: 'Basic Form',
width: 300,
bodyPadding: 10,
defaults: {
anchor: '100%'
},
items: [
{ xtype: 'textField' },
{ xtype: 'comboBox' },
{ xtype: 'numberField' }
],
buttons: [
{ text: 'Submit' },
{ text: 'Cancel' }
]
});