Launch.js 427 B

1234567891011121314151617181920
  1. Ext.define('erp.view.hr.kpi.Launch',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. region: 'north',
  10. xtype: "erpBatchDealFormPanel",
  11. anchor: '100% 25%'
  12. },{
  13. region: 'center',
  14. xtype: "erpBatchDealGridPanel",
  15. anchor: '100% 75%',
  16. }]
  17. });
  18. me.callParent(arguments);
  19. }
  20. });