Viewport.js 338 B

12345678910111213141516
  1. Ext.define('erp.view.pm.make.LoadingParts.Viewport',{
  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: 'south',
  10. xtype: "LoadingPartsGrid",
  11. anchor: '100% 100%'
  12. }]
  13. });
  14. me.callParent(arguments);
  15. }
  16. });