Viewport.js 432 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.common.print.Viewport',{
  2. extend: 'Ext.Viewport',
  3. hideBorders: true,
  4. layout: {
  5. type: 'vbox',
  6. align: 'center'
  7. },
  8. initComponent : function(){
  9. var me = this;
  10. Ext.apply(me, {
  11. items: [{
  12. xtype: 'erpPrintFormPanel',
  13. minMode: true,
  14. width: 550,
  15. height: 400,
  16. bodyStyle: 'background: #f1f1f1;padding: 10px',
  17. margin: '60 0 0 0'
  18. }]
  19. });
  20. me.callParent(arguments);
  21. }
  22. });