Viewport.js 448 B

12345678910111213141516171819
  1. Ext.define('erp.view.scm.reserve.setBarcode.Viewport',{
  2. extend: 'Ext.Viewport',
  3. hideBorders: true,
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. region: 'north',
  9. xtype: 'erpSetBarcodeFormPanel',
  10. anchor: '100% 35%'
  11. },{
  12. region: 'center',
  13. xtype: "erpSetBarcodeGridPanel",
  14. anchor: '100% 40%'
  15. }]
  16. });
  17. me.callParent(arguments);
  18. }
  19. });