UpdateTeamcode.js 405 B

1234567891011121314151617
  1. /**
  2. * 更新线别
  3. */
  4. Ext.define('erp.view.core.button.UpdateTeamcode',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpUpdateTeamcodeButton',
  7. iconCls: 'x-button-icon-submit',
  8. cls: 'x-btn-gray',
  9. tooltip: '更新线别',
  10. id: 'erpUpdateTeamcodeButton',
  11. formBind: true,
  12. text: '更新线别',
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 120
  17. });