| 123456789101112131415161718192021 |
- Ext.define('erp.view.fa.fix.AssetsLocation',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'assetsLocationViewport',
- layout: 'anchor',
- items: [{
- xtype: 'erpGridPanel4',
- anchor: '100% 100%',
- necessaryField: 'al_departmentid',
- keyField: 'al_id'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|