12345678910111213141516171819 |
- Ext.define('erp.view.scm.reserve.setBarcode.Viewport',{
- extend: 'Ext.Viewport',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- region: 'north',
- xtype: 'erpSetBarcodeFormPanel',
- anchor: '100% 35%'
- },{
- region: 'center',
- xtype: "erpSetBarcodeGridPanel",
- anchor: '100% 40%'
- }]
- });
- me.callParent(arguments);
- }
- });
|