FeatureQuery.js 380 B

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