1234567891011121314151617181920212223242526272829 |
- 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);
- }
- });
|