[SSE] asc_getSubtotalTop for pivot fields.

This commit is contained in:
Julia Radzhabova 2017-08-04 17:09:58 +03:00
parent a00b65f56f
commit 31a9da234f
2 changed files with 7 additions and 6 deletions

View file

@ -226,12 +226,13 @@ define([ 'text!spreadsheeteditor/main/app/template/FieldSettingsDialog.templa
_setDefaults: function (props) {
if (props) {
var field = ((this.type == 0) ? props.asc_getColumnFields() : ((this.type == 1) ? props.asc_getRowFields() : props.asc_getPageFields()))[this.fieldIndex],
cache_names = props.asc_getCacheFields(),
pivot_names = props.asc_getPivotFields();
var cache_names = props.asc_getCacheFields(),
field = props.asc_getPivotFields()[this.fieldIndex];
this.lblSourceName.html(Common.Utils.String.htmlEncode(cache_names[field.asc_getIndex()].asc_getName()));
this.inputCustomName.setValue(Common.Utils.String.htmlEncode((pivot_names[field.asc_getIndex()] || cache_names[field.asc_getIndex()]).asc_getName()));
this.lblSourceName.html(Common.Utils.String.htmlEncode(cache_names[this.fieldIndex].asc_getName()));
this.inputCustomName.setValue(Common.Utils.String.htmlEncode((field || cache_names[this.fieldIndex]).asc_getName()));
(field.asc_getSubtotalTop()) ? this.radioTop.setValue(true) : this.radioBottom.setValue(true);
}
},

View file

@ -605,7 +605,7 @@ define([
(new SSE.Views.FieldSettingsDialog(
{
props: me._originalProps,
fieldIndex: me._state.field.record.get('index'),
fieldIndex: me._state.field.record.get('pivotIndex'),
names: me._state.names,
api: me.api,
type: me._state.field.type,