VastSend.js 400 B

12345678910111213141516
  1. /**
  2. * 批量发出按钮
  3. */
  4. Ext.define('erp.view.core.button.VastSend',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastSendButton',
  7. iconCls: 'x-button-icon-delete',
  8. cls: 'x-btn-gray-1',
  9. id: 'erpVastSendButton',
  10. tooltip: '发出多条记录',
  11. text: $I18N.common.button.erpVastSendButton,
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 90
  16. });