| 12345678910111213141516171819202122 |
- Ext.define('saas.view.purchase.panel.FormPanel', {
- extend: 'saas.view.core.form.FormPanel',
- xtype: 'purchase-panel-FormPanel',
- controller: 'purchase-panel-FormPanelController',
- frame: true,
- resizable: true,
- width: 610,
- minWidth: 610,
- minHeight: 300,
- layout: 'column',
- defaults: {
- columnWidth:0.25,
- xtype: 'textfield',
- margin:'5'
- },
- configUrl: 'resources/json/purchase/formItems.json',
- });
|