FormPanel.js 465 B

12345678910111213141516171819202122
  1. Ext.define('saas.view.purchase.panel.FormPanel', {
  2. extend: 'saas.view.core.form.FormPanel',
  3. xtype: 'purchase-panel-FormPanel',
  4. controller: 'purchase-panel-FormPanelController',
  5. frame: true,
  6. resizable: true,
  7. width: 610,
  8. minWidth: 610,
  9. minHeight: 300,
  10. layout: 'column',
  11. defaults: {
  12. columnWidth:0.25,
  13. xtype: 'textfield',
  14. margin:'5'
  15. },
  16. configUrl: 'resources/json/purchase/formItems.json',
  17. });