UpdateRemark.js 426 B

1234567891011121314151617
  1. /**
  2. * 更新备注
  3. */
  4. Ext.define('erp.view.core.button.UpdateRemark',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpUpdateRemarkButton',
  7. iconCls: 'x-button-icon-submit',
  8. cls: 'x-btn-gray',
  9. tooltip: '更新备注',
  10. id: 'erpUpdateRemarkButton',
  11. formBind: true,
  12. text: $I18N.common.button.erpUpdateRemarkButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 120
  17. });