DefaultCategory.js 377 B

12345678910111213141516171819
  1. Ext.define('erp.view.co.cost.DefaultCategory',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'defaultCategoryViewport',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpGridPanel4',
  13. anchor: '100% 100%'
  14. }]
  15. }]
  16. });
  17. me.callParent(arguments);
  18. }
  19. });