UpdateGMYearPlan.js 456 B

123456789101112131415161718
  1. /**
  2. * 刷新年度计划金额
  3. */
  4. Ext.define('erp.view.core.button.UpdateGMYearPlan',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpUpdateGMYearPlanButton',
  7. iconCls: 'x-button-icon-reset',
  8. cls: 'x-btn-gray',
  9. id: 'erpUpdateGMYearPlanButton',
  10. text: $I18N.common.button.erpUpdateGMYearPlanButton,
  11. style: {
  12. marginLeft: '20px'
  13. },
  14. width: 150,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });