FeatureDefinition.js 368 B

12345678910111213141516
  1. /**
  2. * 查看特征定义按钮
  3. */
  4. Ext.define('erp.view.core.button.FeatureDefinition', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpFeatureDefinitionButton',
  7. cls : 'x-btn-gray',
  8. id : 'featuredefinition',
  9. text : $I18N.common.button.erpFeatureDefinitionButton,
  10. style : {
  11. marginLeft : '10px'
  12. },
  13. initComponent : function() {
  14. this.callParent(arguments);
  15. }
  16. });