| 1234567891011121314151617181920212223242526272829303132333435363738 |
- Ext.define('erp.view.fa.ars.FinalCheckCheck',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [
- {
- xtype: "window",
- autoShow: true,
- closable: false,
- maximizable : true,
- width: '65%',
- height: '65%',
- layout: 'border',
- items: [{
- xtype: 'FinalCheckCheck'
- }]
- }
-
-
-
-
- /*{
- layout: 'anchor',
- items: [{
- id:'FinalCheckCheckView',
- confirmUrl:'fa/ars/confirmFinalCheckCheck.action',
-
- xtype: 'FinalCheckCheck',
- anchor: '100% 100%',
- }]
- }*/]
- });
- me.callParent(arguments);
- }
- });
|