diff --git a/apps/documenteditor/main/app/view/HeaderFooterSettings.js b/apps/documenteditor/main/app/view/HeaderFooterSettings.js index 8a40e8e92..2794682e5 100644 --- a/apps/documenteditor/main/app/view/HeaderFooterSettings.js +++ b/apps/documenteditor/main/app/view/HeaderFooterSettings.js @@ -139,14 +139,14 @@ define([ // value = prop.get_PageNumbering(); if ( this._state.Numbering!==value ) { - this.radioPrev.setValue(!!value); - this.radioFrom.setValue(!value); + this.radioPrev.setValue(!!value, true); + this.radioFrom.setValue(!value, true); this._state.Numbering=value; } // value = prop.get_NumberingFrom(); if ( this._state.From!==value ) { - this.numFrom.setValue(value===null ? '' : value); + this.numFrom.setValue(value===null ? '' : value, true); this._state.From=value; } }