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