[DE] Debug Header/Footer settings.

This commit is contained in:
Julia Radzhabova 2018-01-22 11:49:46 +03:00
parent 4a43eaa151
commit 926ffde349

View file

@ -139,14 +139,14 @@ define([
// value = prop.get_PageNumbering(); // value = prop.get_PageNumbering();
if ( this._state.Numbering!==value ) { if ( this._state.Numbering!==value ) {
this.radioPrev.setValue(!!value); this.radioPrev.setValue(!!value, true);
this.radioFrom.setValue(!value); this.radioFrom.setValue(!value, true);
this._state.Numbering=value; this._state.Numbering=value;
} }
// value = prop.get_NumberingFrom(); // value = prop.get_NumberingFrom();
if ( this._state.From!==value ) { if ( this._state.From!==value ) {
this.numFrom.setValue(value===null ? '' : value); this.numFrom.setValue(value===null ? '' : value, true);
this._state.From=value; this._state.From=value;
} }
} }