MsdInfo.js 299 B

123456789101112131415
  1. Ext.define('erp.view.scm.product.MSDProduct.MsdInfo',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. xtype: 'msdInfoGridGrid',
  9. anchor: '100% 100%',
  10. keyField: 'ac_id'
  11. }]
  12. });
  13. me.callParent(arguments);
  14. }
  15. });