| 123456789101112131415 |
- Ext.define('erp.view.scm.product.MSDProduct.MsdInfo',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'msdInfoGridGrid',
- anchor: '100% 100%',
- keyField: 'ac_id'
- }]
- });
- me.callParent(arguments);
- }
- });
|