GiftBase.js 594 B

1234567891011121314151617181920212223
  1. Ext.define('erp.view.crm.customercare.GiftBase',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. layout: 'anchor',
  10. items: [{
  11. xtype: 'erpFormPanel',
  12. anchor: '100% 100%',
  13. saveUrl: 'crm/customercare/saveGiftBase.action',
  14. deleteUrl: 'crm/customercare/deleteGiftBase.action',
  15. updateUrl: 'crm/customercare/updateGiftBase.action',
  16. getIdUrl: 'common/getId.action?seq=GiftBase_SEQ',
  17. keyField: 'gi_id'
  18. }]
  19. }]
  20. });
  21. me.callParent(arguments);
  22. }
  23. });