PrintA4.js 383 B

1234567891011121314151617
  1. /**
  2. * A4纸打印按钮
  3. */
  4. Ext.define('erp.view.core.button.PrintA4',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpPrintA4Button',
  7. iconCls: 'x-button-icon-print',
  8. cls: 'x-btn-gray',
  9. text: $I18N.common.button.erpPrintA4Button,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. width: 90,
  14. initComponent : function(){
  15. this.callParent(arguments);
  16. }
  17. });