SubRelation.js 314 B

1234567891011121314
  1. /**
  2. * 替代关系按钮
  3. */
  4. Ext.define('erp.view.core.button.SubRelation', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpSubRelationButton',
  7. cls : 'x-btn-gray',
  8. id : 'SubRelation',
  9. text : $I18N.common.button.erpSubRelationButton,
  10. width : 90,
  11. initComponent : function() {
  12. this.callParent(arguments);
  13. }
  14. });