Ext.define('erp.view.scm.reserve.Check',{ extend: 'Ext.Viewport', layout: 'fit', hideBorders: true, initComponent : function(){ var me = this; var width = Ext.isIE ? screen.width*0.7*0.8 : '70%', height = Ext.isIE ? screen.height*0.6 : '65%'; Ext.apply(me, { items: [{ layout: 'anchor', items: [{ xtype: "window", autoShow: true, closable: false, maximizable : true, width: width, height: height, layout: 'anchor', items: [{ anchor: '100% 100%', xtype: 'Check' }] }] }] }); me.callParent(arguments); } });