KpiComment.js 632 B

123456789101112131415161718192021222324
  1. Ext.define('erp.view.hr.kpi.KpiComment',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'erpFormPanel',
  10. anchor: '100% 50%',
  11. saveUrl: 'common/saveCommon.action?caller='+caller,
  12. deleteUrl: 'common/deleteCommon.action?caller='+caller,
  13. updateUrl: 'common/updateCommon.action?caller='+caller,
  14. getIdUrl: 'common/getId.action?seq=KpiComment_SEQ',
  15. keyField: 'kc_id',
  16. codeField: ''
  17. },{
  18. xtype: 'erpGridPanel2',
  19. anchor: '100% 50%'
  20. }]
  21. });
  22. me.callParent(arguments);
  23. }
  24. });