12345678910111213141516171819202122 |
- Ext.define('erp.view.common.print.Viewport',{
- extend: 'Ext.Viewport',
- hideBorders: true,
- layout: {
- type: 'vbox',
- align: 'center'
- },
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'erpPrintFormPanel',
- minMode: true,
- width: 550,
- height: 400,
- bodyStyle: 'background: #f1f1f1;padding: 10px',
- margin: '60 0 0 0'
- }]
- });
- me.callParent(arguments);
- }
- });
|