[SSE] Update pivot templates when edit grand totals.
This commit is contained in:
parent
0ca3e9fc41
commit
06bbdabb21
|
@ -278,4 +278,8 @@
|
||||||
|
|
||||||
margin-top: -6px;
|
margin-top: -6px;
|
||||||
margin-bottom: -6px;
|
margin-bottom: -6px;
|
||||||
|
|
||||||
|
.view .dataview {
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -239,6 +239,18 @@ define([
|
||||||
needTablePictures = true;
|
needTablePictures = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
value = props.asc_getColGrandTotals();
|
||||||
|
if (this._state.ColGrandTotals!==value) {
|
||||||
|
this._state.ColGrandTotals=value;
|
||||||
|
needTablePictures = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
value = props.asc_getRowGrandTotals();
|
||||||
|
if (this._state.RowGrandTotals!==value) {
|
||||||
|
this._state.RowGrandTotals=value;
|
||||||
|
needTablePictures = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (needTablePictures)
|
if (needTablePictures)
|
||||||
this.onApiInitPivotStyles(this.api.asc_getTablePictures(this._originalProps, true));
|
this.onApiInitPivotStyles(this.api.asc_getTablePictures(this._originalProps, true));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue