FeatureView.js 338 B

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