ReportFiles.js 490 B

12345678910111213141516171819
  1. Ext.define('erp.view.fa.fp.ReportFiles',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. anchor: '100% 100%',
  9. xtype: 'erpFormPanel',
  10. saveUrl: 'fa/fp/saveReportFiles.action',
  11. deleteUrl: 'fa/fp/deleteReportFiles.action',
  12. updateUrl: 'fa/fp/updateReportFiles.action',
  13. getIdUrl: 'common/getId.action?seq=ReportFiles_SEQ',
  14. keyField: 'id'
  15. }]
  16. });
  17. me.callParent(arguments);
  18. }
  19. });