Ext.define('erp.view.fa.fix.InventoryPost',{ extend: 'Ext.Viewport', layout: 'fit', hideBorders: true, initComponent : function(){ var me = this; Ext.apply(me, { items: [{ layout: 'anchor', items: [{ id:'InventoryPostView', confirmUrl:'fa/fix/confirmInventoryPost.action', xtype: 'InventoryPost', anchor: '100% 100%', }] }] }); me.callParent(arguments); } });