Viewport.js 458 B

123456789101112131415161718192021
  1. Ext.define('erp.view.common.batchPrint.Viewport',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. region: 'north',
  10. xtype: "erpBatchPrintFormPanel",
  11. // printUrl:'',
  12. anchor: '100% 25%'
  13. },{
  14. region: 'south',
  15. xtype: "erpBatchPrintGridPanel",
  16. anchor: '100% 75%'
  17. }]
  18. });
  19. me.callParent(arguments);
  20. }
  21. });