VastSpare.js 447 B

12345678910111213141516171819
  1. /**
  2. * 批量备置按钮
  3. */
  4. Ext.define('erp.view.core.button.VastSpare',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastSpareButton',
  7. iconCls: 'x-button-icon-save',
  8. cls: 'x-btn-gray-1',
  9. id: 'save',
  10. tooltip: '备置多条记录',
  11. id: 'erpVastSpareButton',
  12. text: $I18N.common.button.erpVastSpareButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 60,
  17. handler: function(){
  18. }
  19. });