VastWritemark.js 479 B

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