ChangeHandler.js 456 B

12345678910111213141516171819
  1. /**
  2. * 变更处理人按钮
  3. */
  4. Ext.define('erp.view.core.button.ChangeHandler',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpChangeHandlerButton',
  7. iconCls: 'x-button-icon-save',
  8. cls: 'x-btn-gray',
  9. text: $I18N.common.button.erpChangeHandlerButton,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. id:'changehandler',
  14. disabled:true,
  15. width: 120,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });