VastPrint.js 559 B

12345678910111213141516171819202122
  1. /**
  2. * 批量打印按钮
  3. */
  4. Ext.define('erp.view.core.button.VastPrint',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastPrintButton',
  7. text: $I18N.common.button.erpVastPrintButton,
  8. tooltip: '点击进入批量选择模式,可以回复多条记录',
  9. iconCls: 'x-button-icon-print',
  10. id:'erpVastPrintButton',
  11. cls: 'x-btn-gray',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 90,
  16. //handler: function(){
  17. //alert('print');
  18. //}
  19. initComponent : function(){
  20. this.callParent(arguments);
  21. }
  22. });