VastInterview.js 472 B

12345678910111213141516171819
  1. /**
  2. * 批量删除按钮
  3. */
  4. Ext.define('erp.view.core.button.VastInterview',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastInterviewButton',
  7. iconCls: 'x-button-icon-delete',
  8. cls: 'x-btn-gray-1',
  9. id: 'VastInterview',
  10. tooltip: '批量转面试',
  11. id: 'erpVastInterviewButton',
  12. text: $I18N.common.button.erpVastInterviewButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 100,
  17. handler: function(){
  18. }
  19. });