12345678910111213141516 |
- Ext.define('erp.view.pm.make.LoadingParts.Viewport',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- region: 'south',
- xtype: "LoadingPartsGrid",
- anchor: '100% 100%'
- }]
- });
- me.callParent(arguments);
- }
- });
|