@syncfusion/ej2-pivotview 20.2.38 → 20.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -1
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +302 -254
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +306 -258
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +22 -22
- package/src/base/engine.js +7 -5
- package/src/common/base/constant.d.ts +2 -0
- package/src/common/base/constant.js +2 -0
- package/src/common/base/css-constant.d.ts +2 -4
- package/src/common/base/css-constant.js +3 -5
- package/src/common/base/interface.d.ts +11 -0
- package/src/common/calculatedfield/calculated-field.d.ts +3 -1
- package/src/common/calculatedfield/calculated-field.js +163 -168
- package/src/common/conditionalformatting/conditional-formatting.js +4 -3
- package/src/common/popups/grouping.js +2 -2
- package/src/common/popups/toolbar.js +6 -6
- package/src/pivotchart/base/pivotchart.js +32 -18
- package/src/pivotview/actions/drill-through.js +1 -1
- package/src/pivotview/actions/excel-export.d.ts +1 -1
- package/src/pivotview/actions/excel-export.js +13 -4
- package/src/pivotview/actions/keyboard.js +6 -6
- package/src/pivotview/actions/pdf-export.d.ts +1 -1
- package/src/pivotview/actions/pdf-export.js +13 -2
- package/src/pivotview/actions/virtualscroll.js +2 -2
- package/src/pivotview/base/pivotview-model.d.ts +7 -2
- package/src/pivotview/base/pivotview.d.ts +6 -2
- package/src/pivotview/base/pivotview.js +26 -20
- package/src/pivotview/renderer/render.js +26 -16
- package/styles/bootstrap-dark.css +26 -24
- package/styles/bootstrap.css +26 -24
- package/styles/bootstrap4.css +26 -24
- package/styles/bootstrap5-dark.css +26 -24
- package/styles/bootstrap5.css +26 -24
- package/styles/fabric-dark.css +26 -24
- package/styles/fabric.css +26 -24
- package/styles/fluent-dark.css +27 -25
- package/styles/fluent.css +27 -25
- package/styles/highcontrast-light.css +26 -24
- package/styles/highcontrast.css +26 -24
- package/styles/material-dark.css +26 -24
- package/styles/material.css +26 -24
- package/styles/pivotfieldlist/_fluent-definition.scss +1 -1
- package/styles/pivotfieldlist/_layout.scss +14 -10
- package/styles/pivotfieldlist/_tailwind-definition.scss +1 -1
- package/styles/pivotfieldlist/_theme.scss +1 -2
- package/styles/pivotfieldlist/bootstrap-dark.css +23 -21
- package/styles/pivotfieldlist/bootstrap.css +23 -21
- package/styles/pivotfieldlist/bootstrap4.css +23 -21
- package/styles/pivotfieldlist/bootstrap5-dark.css +23 -21
- package/styles/pivotfieldlist/bootstrap5.css +23 -21
- package/styles/pivotfieldlist/fabric-dark.css +23 -21
- package/styles/pivotfieldlist/fabric.css +23 -21
- package/styles/pivotfieldlist/fluent-dark.css +24 -22
- package/styles/pivotfieldlist/fluent.css +24 -22
- package/styles/pivotfieldlist/highcontrast-light.css +23 -21
- package/styles/pivotfieldlist/highcontrast.css +23 -21
- package/styles/pivotfieldlist/material-dark.css +23 -21
- package/styles/pivotfieldlist/material.css +23 -21
- package/styles/pivotfieldlist/tailwind-dark.css +24 -22
- package/styles/pivotfieldlist/tailwind.css +24 -22
- package/styles/pivotview/_theme.scss +3 -3
- package/styles/pivotview/bootstrap-dark.css +3 -3
- package/styles/pivotview/bootstrap.css +3 -3
- package/styles/pivotview/bootstrap4.css +3 -3
- package/styles/pivotview/bootstrap5-dark.css +3 -3
- package/styles/pivotview/bootstrap5.css +3 -3
- package/styles/pivotview/fabric-dark.css +3 -3
- package/styles/pivotview/fabric.css +3 -3
- package/styles/pivotview/fluent-dark.css +3 -3
- package/styles/pivotview/fluent.css +3 -3
- package/styles/pivotview/highcontrast-light.css +3 -3
- package/styles/pivotview/highcontrast.css +3 -3
- package/styles/pivotview/material-dark.css +3 -3
- package/styles/pivotview/material.css +3 -3
- package/styles/pivotview/tailwind-dark.css +3 -3
- package/styles/pivotview/tailwind.css +3 -3
- package/styles/tailwind-dark.css +27 -25
- package/styles/tailwind.css +27 -25
|
@@ -1954,7 +1954,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
1954
1954
|
*/
|
|
1955
1955
|
PivotView.prototype.excelExport = function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
1956
1956
|
if (this.enableVirtualization && this.dataSourceSettings.mode !== 'Server') {
|
|
1957
|
-
this.excelExportModule.exportToExcel('Excel', excelExportProperties);
|
|
1957
|
+
this.excelExportModule.exportToExcel('Excel', excelExportProperties, isBlob);
|
|
1958
1958
|
}
|
|
1959
1959
|
else {
|
|
1960
1960
|
this.exportType = 'Excel';
|
|
@@ -1979,7 +1979,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
1979
1979
|
*/
|
|
1980
1980
|
PivotView.prototype.csvExport = function (excelExportProperties, isMultipleExport, workbook, isBlob) {
|
|
1981
1981
|
if (this.enableVirtualization && this.dataSourceSettings.mode !== 'Server') {
|
|
1982
|
-
this.excelExportModule.exportToExcel('CSV', excelExportProperties);
|
|
1982
|
+
this.excelExportModule.exportToExcel('CSV', excelExportProperties, isBlob);
|
|
1983
1983
|
}
|
|
1984
1984
|
else {
|
|
1985
1985
|
this.exportType = 'CSV';
|
|
@@ -2004,7 +2004,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2004
2004
|
*/
|
|
2005
2005
|
PivotView.prototype.pdfExport = function (pdfExportProperties, isMultipleExport, pdfDoc, isBlob) {
|
|
2006
2006
|
if (this.enableVirtualization && this.dataSourceSettings.mode !== 'Server') {
|
|
2007
|
-
this.pdfExportModule.exportToPDF(pdfExportProperties);
|
|
2007
|
+
this.pdfExportModule.exportToPDF(pdfExportProperties, isBlob);
|
|
2008
2008
|
}
|
|
2009
2009
|
else {
|
|
2010
2010
|
this.grid.pdfExport(pdfExportProperties, isMultipleExport, pdfDoc, isBlob);
|
|
@@ -2070,7 +2070,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
if (this.dataType === 'pivot') {
|
|
2072
2072
|
var clonedDrillMembers_1 = PivotUtil.cloneDrillMemberSettings(this.dataSourceSettings.drilledMembers);
|
|
2073
|
-
var colIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('
|
|
2073
|
+
var colIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('data-colindex')) : Number(closest(target, 'th').getAttribute('data-colindex'));
|
|
2074
2074
|
var rowIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('index')) : Number(closest(target, 'th').getAttribute('index'));
|
|
2075
2075
|
var currentCell = chartDrillInfo ? chartDrillInfo.cell :
|
|
2076
2076
|
this.engineModule.pivotValues[rowIndex][colIndex];
|
|
@@ -2178,7 +2178,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2178
2178
|
currentCell = chartDrillInfo.cell;
|
|
2179
2179
|
}
|
|
2180
2180
|
else {
|
|
2181
|
-
var colIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('
|
|
2181
|
+
var colIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('data-colindex')) : Number(closest(target, 'th').getAttribute('data-colindex'));
|
|
2182
2182
|
var rowIndex = axis === 'row' ? Number(closest(target, 'td').getAttribute('index')) : Number(closest(target, 'th').getAttribute('index'));
|
|
2183
2183
|
currentCell = this.olapEngineModule.pivotValues[rowIndex][colIndex];
|
|
2184
2184
|
}
|
|
@@ -2481,6 +2481,10 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2481
2481
|
(mCntVScrollPos === mCntScrollPos ? (mCntScrollPos - hScrollPos) :
|
|
2482
2482
|
(mCntScrollPos < mCntVScrollPos && (hScrollPos === mCntVScrollPos || hScrollPos > mCntScrollPos) ?
|
|
2483
2483
|
-(mCntVScrollPos - mCntScrollPos) : 0)));
|
|
2484
|
+
if (this.actionObj.actionName === 'Sort value' || this.actionObj.actionName === 'Sort field') {
|
|
2485
|
+
var excessMove = -this.scrollPosObject.horizontalSection;
|
|
2486
|
+
this.scrollPosObject.horizontalSection = this.scrollPosObject.horizontalSection + excessMove;
|
|
2487
|
+
}
|
|
2484
2488
|
horiOffset = (ele.scrollLeft > this.scrollerBrowserLimit) ?
|
|
2485
2489
|
(mCnt.querySelector('.' + cls.TABLE).style.transform.split(',')[0].trim() + ',') :
|
|
2486
2490
|
'translate(' + -(((ele.scrollLeft * this.horizontalScrollScale) -
|
|
@@ -2523,7 +2527,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2523
2527
|
}
|
|
2524
2528
|
};
|
|
2525
2529
|
PivotView.prototype.setToolTip = function (args) {
|
|
2526
|
-
var colIndex = Number(args.target.getAttribute('
|
|
2530
|
+
var colIndex = Number(args.target.getAttribute('data-colindex'));
|
|
2527
2531
|
var rowIndex = Number(args.target.getAttribute('index'));
|
|
2528
2532
|
var cell = (this.dataSourceSettings.values.length > 0 && this.pivotValues &&
|
|
2529
2533
|
this.pivotValues[rowIndex] && this.pivotValues[rowIndex][colIndex]) ?
|
|
@@ -2720,7 +2724,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2720
2724
|
var ele_1 = e.target;
|
|
2721
2725
|
var axis = (ele_1.parentElement.classList.contains(cls.ROWSHEADER) || ele_1.classList.contains(cls.ROWSHEADER)) ? 'row' : 'column';
|
|
2722
2726
|
ele_1 = axis === 'column' ? closest(ele_1, 'th') : closest(ele_1, 'td');
|
|
2723
|
-
var colIndex = Number(ele_1.getAttribute('
|
|
2727
|
+
var colIndex = Number(ele_1.getAttribute('data-colindex'));
|
|
2724
2728
|
var rowIndex = Number(ele_1.getAttribute('index'));
|
|
2725
2729
|
var selectArgs = {
|
|
2726
2730
|
cancel: false,
|
|
@@ -2797,7 +2801,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2797
2801
|
if (this.actionBeginMethod()) {
|
|
2798
2802
|
return;
|
|
2799
2803
|
}
|
|
2800
|
-
var colIndex = Number(ele.getAttribute('
|
|
2804
|
+
var colIndex = Number(ele.getAttribute('data-colindex'));
|
|
2801
2805
|
var rowIndex = Number(ele.getAttribute('index'));
|
|
2802
2806
|
if (this.dataSourceSettings.valueAxis === 'row' && (this.dataSourceSettings.values.length > 1 || this.dataSourceSettings.alwaysShowValueHeader)) {
|
|
2803
2807
|
var header = this.pivotValues[rowIndex][colIndex];
|
|
@@ -2811,13 +2815,13 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
2811
2815
|
}
|
|
2812
2816
|
}
|
|
2813
2817
|
else if (this.dataSourceSettings.valueAxis === 'column' && (this.dataSourceSettings.values.length > 1 || this.dataSourceSettings.alwaysShowValueHeader)) {
|
|
2814
|
-
colIndex = (Number(ele.getAttribute('
|
|
2818
|
+
colIndex = (Number(ele.getAttribute('data-colindex')) + Number(ele.getAttribute('aria-colspan')) - 1);
|
|
2815
2819
|
rowIndex = this.engineModule.headerContent.length - 1;
|
|
2816
2820
|
}
|
|
2817
2821
|
this.setProperties({
|
|
2818
2822
|
dataSourceSettings: {
|
|
2819
2823
|
valueSortSettings: {
|
|
2820
|
-
columnIndex: (Number(ele.getAttribute('
|
|
2824
|
+
columnIndex: (Number(ele.getAttribute('data-colindex')) +
|
|
2821
2825
|
Number(ele.getAttribute('aria-colspan')) - 1),
|
|
2822
2826
|
sortOrder: this.dataSourceSettings.valueSortSettings.sortOrder === 'Descending' ? 'Ascending' : 'Descending',
|
|
2823
2827
|
headerText: this.pivotValues[rowIndex][colIndex].valueSort.levelName,
|
|
@@ -3166,7 +3170,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
3166
3170
|
}
|
|
3167
3171
|
/* eslint-disable */
|
|
3168
3172
|
if (ele && !isNullOrUndefined(this.pivotValues) && this.pivotValues.length > 0) {
|
|
3169
|
-
var colIndex_1 = Number(ele.getAttribute('
|
|
3173
|
+
var colIndex_1 = Number(ele.getAttribute('data-colindex'));
|
|
3170
3174
|
var rowIndex_1 = Number(ele.getAttribute('index'));
|
|
3171
3175
|
var colSpan_1 = Number(ele.getAttribute('aria-colspan'));
|
|
3172
3176
|
var selectArgs = {
|
|
@@ -3336,10 +3340,10 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
3336
3340
|
for (var _i = 0, _a = [].slice.call(this.element.querySelectorAll('.' + cls.CELL_ACTIVE_BGCOLOR)); _i < _a.length; _i++) {
|
|
3337
3341
|
var ele = _a[_i];
|
|
3338
3342
|
removeClass([ele], [cls.CELL_ACTIVE_BGCOLOR, cls.SELECTED_BGCOLOR]);
|
|
3339
|
-
if (activeColumns.indexOf(ele.getAttribute('
|
|
3343
|
+
if (activeColumns.indexOf(ele.getAttribute('data-colindex')) === -1) {
|
|
3340
3344
|
isToggle = false;
|
|
3341
3345
|
}
|
|
3342
|
-
var colIndex = Number(ele.getAttribute('
|
|
3346
|
+
var colIndex = Number(ele.getAttribute('data-colindex'));
|
|
3343
3347
|
actColPos[colIndex] = colIndex;
|
|
3344
3348
|
}
|
|
3345
3349
|
activeColumns = Object.keys(actColPos).length > 0 ? Object.keys(actColPos).sort(function (a, b) {
|
|
@@ -3371,7 +3375,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
3371
3375
|
}
|
|
3372
3376
|
var count = colStart;
|
|
3373
3377
|
while (count <= colEnd) {
|
|
3374
|
-
queryStringArray.push('[
|
|
3378
|
+
queryStringArray.push('[data-colindex="' + count + '"]' + (this.gridSettings.selectionSettings.mode === 'Cell' ?
|
|
3375
3379
|
'[index="' + rowStart + '"]' : "") + '');
|
|
3376
3380
|
count++;
|
|
3377
3381
|
}
|
|
@@ -3399,23 +3403,23 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
3399
3403
|
control.cellSelectionPos = [];
|
|
3400
3404
|
for (var _i = 0, _a = [].slice.call(this.element.querySelectorAll('.' + cls.SELECTED_BGCOLOR)); _i < _a.length; _i++) {
|
|
3401
3405
|
var ele = _a[_i];
|
|
3402
|
-
control.savedSelectedCellsPos.push({ rowIndex: ele.getAttribute('index'), colIndex: ele.getAttribute('
|
|
3406
|
+
control.savedSelectedCellsPos.push({ rowIndex: ele.getAttribute('index'), colIndex: ele.getAttribute('data-colindex') });
|
|
3403
3407
|
}
|
|
3404
3408
|
for (var _b = 0, _c = [].slice.call(this.element.querySelectorAll('.' + cls.CELL_SELECTED_BGCOLOR)); _b < _c.length; _b++) {
|
|
3405
3409
|
var ele = _c[_b];
|
|
3406
|
-
control.cellSelectionPos.push({ rowIndex: ele.getAttribute('index'), colIndex: ele.getAttribute('
|
|
3410
|
+
control.cellSelectionPos.push({ rowIndex: ele.getAttribute('index'), colIndex: ele.getAttribute('data-colindex') });
|
|
3407
3411
|
}
|
|
3408
3412
|
};
|
|
3409
3413
|
PivotView.prototype.setSavedSelectedCells = function () {
|
|
3410
3414
|
var control = this;
|
|
3411
3415
|
for (var _i = 0, _a = [].slice.call(this.savedSelectedCellsPos); _i < _a.length; _i++) {
|
|
3412
3416
|
var item = _a[_i];
|
|
3413
|
-
var query = '[
|
|
3417
|
+
var query = '[data-colindex="' + item.colIndex + '"][index="' + item.rowIndex + '"]';
|
|
3414
3418
|
addClass([control.element.querySelector(query)], [cls.CELL_ACTIVE_BGCOLOR, cls.SELECTED_BGCOLOR]);
|
|
3415
3419
|
}
|
|
3416
3420
|
for (var _b = 0, _c = [].slice.call(this.cellSelectionPos); _b < _c.length; _b++) {
|
|
3417
3421
|
var item = _c[_b];
|
|
3418
|
-
var query = '[
|
|
3422
|
+
var query = '[data-colindex="' + item.colIndex + '"][index="' + item.rowIndex + '"]';
|
|
3419
3423
|
addClass([control.element.querySelector(query)], [cls.CELL_SELECTED_BGCOLOR]);
|
|
3420
3424
|
}
|
|
3421
3425
|
};
|
|
@@ -3996,8 +4000,7 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
3996
4000
|
: this.actionObj.actionName == events.removeRecord ? events.recordRemoved : (this.actionObj.actionName == events.pngExport) ? events.pngExported : (this.actionObj.actionName == events.jpegExport) ? events.jpegExported
|
|
3997
4001
|
: (this.actionObj.actionName == events.svgExport) ? events.svgExported : (this.actionObj.actionName == events.pdfExport) ? events.pdfExported : (this.actionObj.actionName == events.csvExport) ? events.csvExported : (this.actionObj.actionName == events.excelExport) ? events.excelExported : this.actionObj.actionName == events.windowResize ? events.windowResized
|
|
3998
4002
|
: this.actionObj.actionName == events.saveCurrentReport ? events.reportSaved : (this.actionObj.actionName == events.addNewReport) ? events.newReportAdded : (this.actionObj.actionName == events.saveAsCurrentReport) ? events.reportReSaved
|
|
3999
|
-
: (this.actionObj.actionName == events.renameCurrentReport) ? events.reportRenamed : (this.actionObj.actionName == events.
|
|
4000
|
-
: (this.actionObj.actionName == events.verticalScroll) ? events.verticalScrolled : this.actionObj.actionName;
|
|
4003
|
+
: (this.actionObj.actionName == events.renameCurrentReport) ? events.reportRenamed : (this.actionObj.actionName == events.horizontalScroll) ? events.horizontalScrolled : (this.actionObj.actionName == events.verticalScroll) ? events.verticalScrolled : this.actionObj.actionName;
|
|
4001
4004
|
return actionName;
|
|
4002
4005
|
};
|
|
4003
4006
|
/* eslint-disable-next-line */
|
|
@@ -4449,6 +4452,9 @@ var PivotView = /** @class */ (function (_super) {
|
|
|
4449
4452
|
__decorate([
|
|
4450
4453
|
Event()
|
|
4451
4454
|
], PivotView.prototype, "beforeExport", void 0);
|
|
4455
|
+
__decorate([
|
|
4456
|
+
Event()
|
|
4457
|
+
], PivotView.prototype, "exportComplete", void 0);
|
|
4452
4458
|
__decorate([
|
|
4453
4459
|
Event()
|
|
4454
4460
|
], PivotView.prototype, "conditionalFormatting", void 0);
|
|
@@ -283,12 +283,22 @@ var Render = /** @class */ (function () {
|
|
|
283
283
|
this.parent.lastColumn.width = 'auto';
|
|
284
284
|
this.parent.lastColumn = undefined;
|
|
285
285
|
}
|
|
286
|
+
var exportCompleteEventArgs = {
|
|
287
|
+
type: 'PDF',
|
|
288
|
+
promise: args.promise
|
|
289
|
+
};
|
|
290
|
+
this.parent.trigger(events.exportComplete, exportCompleteEventArgs);
|
|
286
291
|
};
|
|
287
292
|
Render.prototype.excelExportComplete = function (args) {
|
|
288
293
|
if (this.parent.lastColumn !== undefined && this.parent.lastColumn.width !== 'auto') {
|
|
289
294
|
this.parent.lastColumn.width = 'auto';
|
|
290
295
|
this.parent.lastColumn = undefined;
|
|
291
296
|
}
|
|
297
|
+
var exportCompleteEventArgs = {
|
|
298
|
+
type: 'Excel/CSV',
|
|
299
|
+
promise: args.promise
|
|
300
|
+
};
|
|
301
|
+
this.parent.trigger(events.exportComplete, exportCompleteEventArgs);
|
|
292
302
|
};
|
|
293
303
|
/* eslint-enable */
|
|
294
304
|
Render.prototype.dataBound = function (args) {
|
|
@@ -380,7 +390,7 @@ var Render = /** @class */ (function () {
|
|
|
380
390
|
isGroupElement = true;
|
|
381
391
|
}
|
|
382
392
|
var rowIndex = Number(elem.getAttribute('index'));
|
|
383
|
-
var colIndex = Number(elem.getAttribute('
|
|
393
|
+
var colIndex = Number(elem.getAttribute('data-colindex'));
|
|
384
394
|
var pivotValue1 = this_1.parent.pivotValues[rowIndex][colIndex];
|
|
385
395
|
var selectedID = item.id;
|
|
386
396
|
switch (selectedID) {
|
|
@@ -452,7 +462,7 @@ var Render = /** @class */ (function () {
|
|
|
452
462
|
if (groupField && groupField.type === 'Custom' || (this_1.parent.engineModule.fieldList[fieldName].isCustomField && fieldName.indexOf('_custom_group') > -1)) {
|
|
453
463
|
groupField = PivotUtil.getFieldByName(fieldName.replace('_custom_group', ''), this_1.parent.dataSourceSettings.groupSettings);
|
|
454
464
|
if (groupField) {
|
|
455
|
-
var cell = this_1.parent.engineModule.pivotValues[Number(elem.getAttribute('index'))][Number(elem.getAttribute('
|
|
465
|
+
var cell = this_1.parent.engineModule.pivotValues[Number(elem.getAttribute('index'))][Number(elem.getAttribute('data-colindex'))];
|
|
456
466
|
var selectedCellsInfo = this_1.parent.groupingModule.getSelectedCells(cell.axis, fieldName, cell.actualText.toString());
|
|
457
467
|
selectedCellsInfo.push({ axis: cell.axis, fieldName: fieldName, name: cell.actualText.toString(), cellInfo: cell });
|
|
458
468
|
var selectedOptions = this_1.parent.groupingModule.getSelectedOptions(selectedCellsInfo);
|
|
@@ -661,7 +671,7 @@ var Render = /** @class */ (function () {
|
|
|
661
671
|
ele = target.parentElement.parentElement;
|
|
662
672
|
}
|
|
663
673
|
var rowIndx = Number(ele.getAttribute('index'));
|
|
664
|
-
var colIndx = Number(ele.getAttribute('
|
|
674
|
+
var colIndx = Number(ele.getAttribute('data-colindex'));
|
|
665
675
|
var pivotValue = this.parent.pivotValues[rowIndx][colIndx];
|
|
666
676
|
var aggregateType;
|
|
667
677
|
if (args.item.id.indexOf(this.parent.element.id + '_Agg') > -1) {
|
|
@@ -805,7 +815,7 @@ var Render = /** @class */ (function () {
|
|
|
805
815
|
var fieldName = target.getAttribute('fieldName');
|
|
806
816
|
if (!fieldName || fieldName == '') {
|
|
807
817
|
var rowIndx = Number(target.getAttribute('index'));
|
|
808
|
-
var colIndx = Number(target.getAttribute('
|
|
818
|
+
var colIndx = Number(target.getAttribute('data-colindex'));
|
|
809
819
|
fieldName = this.engine.pivotValues[rowIndx][colIndx].actualText;
|
|
810
820
|
}
|
|
811
821
|
var valuefields = this.parent.dataSourceSettings.values;
|
|
@@ -993,7 +1003,7 @@ var Render = /** @class */ (function () {
|
|
|
993
1003
|
var selectedElements = this.parent.element.querySelectorAll('.' + cls.CELL_SELECTED_BGCOLOR + ',.' + cls.SELECTED_BGCOLOR);
|
|
994
1004
|
for (var _i = 0, selectedElements_1 = selectedElements; _i < selectedElements_1.length; _i++) {
|
|
995
1005
|
var element = selectedElements_1[_i];
|
|
996
|
-
var colIndex = Number(element.getAttribute('
|
|
1006
|
+
var colIndex = Number(element.getAttribute('data-colindex'));
|
|
997
1007
|
var rowIndex = Number(element.getAttribute('index'));
|
|
998
1008
|
var cell = this.engine.pivotValues[rowIndex][colIndex];
|
|
999
1009
|
if (cell) {
|
|
@@ -1036,7 +1046,7 @@ var Render = /** @class */ (function () {
|
|
|
1036
1046
|
var isRowFieldsAvail = cell.valueSort && cell.valueSort.levelName === (this.parent.dataSourceSettings.rows.length === 0 && this.parent.dataSourceSettings.valueAxis === 'row' &&
|
|
1037
1047
|
this.parent.localeObj.getConstant('grandTotal') + (this.parent.dataSourceSettings.valueSortSettings.headerDelimiter) + (cell.formattedText));
|
|
1038
1048
|
tCell.setAttribute('index', cell.rowIndex ? cell.rowIndex.toString() : '0');
|
|
1039
|
-
if (tCell.getAttribute('
|
|
1049
|
+
if (tCell.getAttribute('data-colindex') === '0') {
|
|
1040
1050
|
if (this.parent.dataType === 'pivot') {
|
|
1041
1051
|
var isValueCell = cell.type && cell.type === 'value';
|
|
1042
1052
|
tCell.innerText = '';
|
|
@@ -1140,18 +1150,18 @@ var Render = /** @class */ (function () {
|
|
|
1140
1150
|
var innerText = tCell.innerText;
|
|
1141
1151
|
tCell.innerText = '';
|
|
1142
1152
|
tCell.classList.add(cls.VALUESCONTENT);
|
|
1143
|
-
cell = args.data[Number(tCell.getAttribute('
|
|
1153
|
+
cell = args.data[Number(tCell.getAttribute('data-colindex'))];
|
|
1144
1154
|
cell = isNullOrUndefined(cell) ? args.column.customAttributes.cell : cell;
|
|
1145
1155
|
cell.isGrandSum = isRowFieldsAvail ? true : cell.isGrandSum;
|
|
1146
1156
|
if (cell.isSum) {
|
|
1147
1157
|
tCell.classList.add(cls.SUMMARY);
|
|
1148
1158
|
}
|
|
1149
1159
|
var isGrandSum = (isNullOrUndefined(cell.isGrandSum) && (!isNullOrUndefined(this.parent.olapEngineModule) && this.parent.olapEngineModule.olapValueAxis === 'column') && this.parent.dataType === 'olap' &&
|
|
1150
|
-
((this.colGrandPos - this.parent.dataSourceSettings.values.length) < Number(tCell.getAttribute('
|
|
1151
|
-
if (cell.isGrandSum || (isGrandSum || this.colGrandPos === Number(tCell.getAttribute('
|
|
1160
|
+
((this.colGrandPos - this.parent.dataSourceSettings.values.length) < Number(tCell.getAttribute('data-colindex'))));
|
|
1161
|
+
if (cell.isGrandSum || (isGrandSum || this.colGrandPos === Number(tCell.getAttribute('data-colindex'))) || this.rowGrandPos === Number(tCell.getAttribute('index'))) {
|
|
1152
1162
|
tCell.classList.add('e-gtot');
|
|
1153
1163
|
}
|
|
1154
|
-
else if (this.parent.dataType === 'olap' ? cell.isSum : this.validateColumnTotalcell(
|
|
1164
|
+
else if (this.parent.dataType === 'olap' ? cell.isSum : this.validateColumnTotalcell(cell.colIndex)) {
|
|
1155
1165
|
tCell.classList.add('e-colstot');
|
|
1156
1166
|
}
|
|
1157
1167
|
if (cell.cssClass) {
|
|
@@ -1164,12 +1174,12 @@ var Render = /** @class */ (function () {
|
|
|
1164
1174
|
'<a data-url="' + innerText + '" class="e-hyperlinkcell ' + customClass + '">' + innerText + '</a>' : innerText)
|
|
1165
1175
|
}));
|
|
1166
1176
|
if (this.parent.gridSettings.allowReordering && !this.parent.showGroupingBar) {
|
|
1167
|
-
tCell.setAttribute('
|
|
1177
|
+
tCell.setAttribute('data-colindex', args.column.customAttributes.cell.colIndex.toString());
|
|
1168
1178
|
}
|
|
1169
1179
|
}
|
|
1170
1180
|
if (this.parent.cellTemplate) {
|
|
1171
1181
|
var index = tCell.getAttribute('index');
|
|
1172
|
-
var colindex = tCell.getAttribute('
|
|
1182
|
+
var colindex = tCell.getAttribute('data-colindex');
|
|
1173
1183
|
var templateID = index + '_' + colindex;
|
|
1174
1184
|
/* eslint-disable-next-line */
|
|
1175
1185
|
var element = this.parent.getCellTemplate()({ targetCell: tCell, cellInfo: cell }, this.parent, 'cellTemplate', this.parent.element.id + '_cellTemplate', null, null, tCell);
|
|
@@ -1340,7 +1350,7 @@ var Render = /** @class */ (function () {
|
|
|
1340
1350
|
args.node.style.borderBottomWidth = '0px';
|
|
1341
1351
|
}
|
|
1342
1352
|
}
|
|
1343
|
-
args.node.setAttribute('
|
|
1353
|
+
args.node.setAttribute('data-colindex', cell.colIndex.toString());
|
|
1344
1354
|
args.node.setAttribute('index', cell.rowIndex.toString());
|
|
1345
1355
|
var fieldName = void 0;
|
|
1346
1356
|
if (this.parent.dataType === 'pivot') {
|
|
@@ -1410,7 +1420,7 @@ var Render = /** @class */ (function () {
|
|
|
1410
1420
|
tCell.children[0].style.display = 'table';
|
|
1411
1421
|
}
|
|
1412
1422
|
else {
|
|
1413
|
-
tCell.children[0].style.display = 'block';
|
|
1423
|
+
tCell.children[0].style.display = this.gridSettings.allowTextWrap ? 'inline' : 'block';
|
|
1414
1424
|
}
|
|
1415
1425
|
if (tCell.children[0].classList.contains('e-stackedheadercelldiv')) {
|
|
1416
1426
|
var span = createElement('span', {
|
|
@@ -1431,7 +1441,7 @@ var Render = /** @class */ (function () {
|
|
|
1431
1441
|
tCell = this.appendValueSortIcon(cell, tCell, cell.rowIndex, cell.colIndex);
|
|
1432
1442
|
if (this.parent.cellTemplate) {
|
|
1433
1443
|
var index = tCell.getAttribute('index');
|
|
1434
|
-
var colindex = tCell.getAttribute('
|
|
1444
|
+
var colindex = tCell.getAttribute('data-colindex');
|
|
1435
1445
|
var templateID = index + '_' + colindex;
|
|
1436
1446
|
this.parent.gridHeaderCellInfo.push({ targetCell: tCell });
|
|
1437
1447
|
}
|
|
@@ -1515,7 +1525,7 @@ var Render = /** @class */ (function () {
|
|
|
1515
1525
|
cell = (cell.className.indexOf('e-headercelldiv') > -1 ? cell.parentElement : cell);
|
|
1516
1526
|
var args = {
|
|
1517
1527
|
currentCell: cell,
|
|
1518
|
-
data: this.engine.pivotValues[Number(cell.getAttribute('index'))][Number(cell.getAttribute('
|
|
1528
|
+
data: this.engine.pivotValues[Number(cell.getAttribute('index'))][Number(cell.getAttribute('data-colindex'))],
|
|
1519
1529
|
cancel: true,
|
|
1520
1530
|
nativeEvent: e
|
|
1521
1531
|
};
|
|
@@ -1028,11 +1028,11 @@
|
|
|
1028
1028
|
border-right-width: 1px;
|
|
1029
1029
|
}
|
|
1030
1030
|
.e-pivotview .e-stackedheadercelldiv {
|
|
1031
|
-
display:
|
|
1031
|
+
display: inline;
|
|
1032
1032
|
}
|
|
1033
1033
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1034
1034
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1035
|
-
display: inline
|
|
1035
|
+
display: inline;
|
|
1036
1036
|
padding-left: 12px !important;
|
|
1037
1037
|
margin-top: 5px;
|
|
1038
1038
|
}
|
|
@@ -1527,7 +1527,7 @@
|
|
|
1527
1527
|
.e-pivotview .e-expand,
|
|
1528
1528
|
.e-pivotview .e-collapse {
|
|
1529
1529
|
cursor: pointer;
|
|
1530
|
-
display: inline
|
|
1530
|
+
display: inline;
|
|
1531
1531
|
height: 18px;
|
|
1532
1532
|
margin-top: 5px;
|
|
1533
1533
|
text-align: center;
|
|
@@ -2513,7 +2513,7 @@
|
|
|
2513
2513
|
}
|
|
2514
2514
|
|
|
2515
2515
|
.e-pivot-calc-dialog-div {
|
|
2516
|
-
max-height:
|
|
2516
|
+
max-height: 600px !important;
|
|
2517
2517
|
min-width: 290px;
|
|
2518
2518
|
}
|
|
2519
2519
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
@@ -2523,11 +2523,14 @@
|
|
|
2523
2523
|
.e-pivot-calc-dialog-div .e-dlg-content {
|
|
2524
2524
|
padding-bottom: 15px;
|
|
2525
2525
|
}
|
|
2526
|
+
.e-pivot-calc-dialog-div .e-dlg-content .e-pivot-calc-custom-format-div {
|
|
2527
|
+
margin-top: 15px;
|
|
2528
|
+
}
|
|
2526
2529
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2527
2530
|
.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2528
2531
|
.e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2529
2532
|
.e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2530
|
-
.e-pivot-calc-dialog-div .e-
|
|
2533
|
+
.e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2531
2534
|
.e-pivot-calc-dialog-div .e-olap-member-title {
|
|
2532
2535
|
color: #f0f0f0;
|
|
2533
2536
|
font-size: 13px;
|
|
@@ -2717,7 +2720,7 @@
|
|
|
2717
2720
|
display: inline-block;
|
|
2718
2721
|
height: 437px;
|
|
2719
2722
|
overflow: auto;
|
|
2720
|
-
width:
|
|
2723
|
+
width: 100% !important;
|
|
2721
2724
|
}
|
|
2722
2725
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview {
|
|
2723
2726
|
display: inline-table;
|
|
@@ -2805,26 +2808,26 @@
|
|
|
2805
2808
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-all-field-title-container .e-info:hover {
|
|
2806
2809
|
color: #0070f0;
|
|
2807
2810
|
}
|
|
2808
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2811
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2809
2812
|
-ms-flex: auto;
|
|
2810
2813
|
flex: auto;
|
|
2811
2814
|
margin-left: 18px;
|
|
2812
2815
|
}
|
|
2813
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2816
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-formula {
|
|
2814
2817
|
height: 100px;
|
|
2815
2818
|
}
|
|
2816
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2819
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-calc-custom-format-div {
|
|
2817
2820
|
margin-top: 15px;
|
|
2818
2821
|
}
|
|
2819
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2820
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2821
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2822
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2823
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2822
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-formula-title,
|
|
2823
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-field-name-title,
|
|
2824
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-olap-hierarchy-title,
|
|
2825
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-format-title,
|
|
2826
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-olap-member-title {
|
|
2824
2827
|
padding-left: 0;
|
|
2825
2828
|
padding-right: 0;
|
|
2826
2829
|
}
|
|
2827
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2830
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-field-name-title {
|
|
2828
2831
|
margin-top: 0;
|
|
2829
2832
|
padding-top: 0;
|
|
2830
2833
|
}
|
|
@@ -2835,7 +2838,7 @@
|
|
|
2835
2838
|
float: left;
|
|
2836
2839
|
margin: 0;
|
|
2837
2840
|
}
|
|
2838
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2841
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2839
2842
|
margin-left: 0;
|
|
2840
2843
|
margin-right: 18px;
|
|
2841
2844
|
}
|
|
@@ -2852,13 +2855,13 @@
|
|
|
2852
2855
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2853
2856
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2854
2857
|
.e-bigger.e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2855
|
-
.e-bigger.e-pivot-calc-dialog-div .e-
|
|
2858
|
+
.e-bigger.e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2856
2859
|
.e-bigger.e-pivot-calc-dialog-div .e-olap-member-title,
|
|
2857
2860
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2858
2861
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2859
2862
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2860
2863
|
.e-bigger .e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2861
|
-
.e-bigger .e-pivot-calc-dialog-div .e-
|
|
2864
|
+
.e-bigger .e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2862
2865
|
.e-bigger .e-pivot-calc-dialog-div .e-olap-member-title {
|
|
2863
2866
|
font-size: 14px;
|
|
2864
2867
|
padding: 6px 0;
|
|
@@ -2912,12 +2915,12 @@
|
|
|
2912
2915
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
2913
2916
|
font-size: 16px;
|
|
2914
2917
|
}
|
|
2915
|
-
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2916
|
-
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2918
|
+
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div,
|
|
2919
|
+
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2917
2920
|
margin-left: 24px;
|
|
2918
2921
|
}
|
|
2919
|
-
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2920
|
-
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2922
|
+
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div,
|
|
2923
|
+
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2921
2924
|
margin-left: 0;
|
|
2922
2925
|
margin-right: 24px;
|
|
2923
2926
|
}
|
|
@@ -4797,8 +4800,7 @@
|
|
|
4797
4800
|
}
|
|
4798
4801
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-input-div,
|
|
4799
4802
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-member-options,
|
|
4800
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-custom-format-div
|
|
4801
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-olap-calc-custom-format-div {
|
|
4803
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-custom-format-div {
|
|
4802
4804
|
margin-left: 20px;
|
|
4803
4805
|
margin-right: 20px;
|
|
4804
4806
|
margin-top: 20px;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1027,11 +1027,11 @@
|
|
|
1027
1027
|
border-right-width: 1px;
|
|
1028
1028
|
}
|
|
1029
1029
|
.e-pivotview .e-stackedheadercelldiv {
|
|
1030
|
-
display:
|
|
1030
|
+
display: inline;
|
|
1031
1031
|
}
|
|
1032
1032
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1033
1033
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1034
|
-
display: inline
|
|
1034
|
+
display: inline;
|
|
1035
1035
|
padding-left: 12px !important;
|
|
1036
1036
|
margin-top: 5px;
|
|
1037
1037
|
}
|
|
@@ -1526,7 +1526,7 @@
|
|
|
1526
1526
|
.e-pivotview .e-expand,
|
|
1527
1527
|
.e-pivotview .e-collapse {
|
|
1528
1528
|
cursor: pointer;
|
|
1529
|
-
display: inline
|
|
1529
|
+
display: inline;
|
|
1530
1530
|
height: 18px;
|
|
1531
1531
|
margin-top: 5px;
|
|
1532
1532
|
text-align: center;
|
|
@@ -2510,7 +2510,7 @@
|
|
|
2510
2510
|
}
|
|
2511
2511
|
|
|
2512
2512
|
.e-pivot-calc-dialog-div {
|
|
2513
|
-
max-height:
|
|
2513
|
+
max-height: 600px !important;
|
|
2514
2514
|
min-width: 290px;
|
|
2515
2515
|
}
|
|
2516
2516
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
@@ -2520,11 +2520,14 @@
|
|
|
2520
2520
|
.e-pivot-calc-dialog-div .e-dlg-content {
|
|
2521
2521
|
padding-bottom: 15px;
|
|
2522
2522
|
}
|
|
2523
|
+
.e-pivot-calc-dialog-div .e-dlg-content .e-pivot-calc-custom-format-div {
|
|
2524
|
+
margin-top: 15px;
|
|
2525
|
+
}
|
|
2523
2526
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2524
2527
|
.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2525
2528
|
.e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2526
2529
|
.e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2527
|
-
.e-pivot-calc-dialog-div .e-
|
|
2530
|
+
.e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2528
2531
|
.e-pivot-calc-dialog-div .e-olap-member-title {
|
|
2529
2532
|
color: #333;
|
|
2530
2533
|
font-size: 13px;
|
|
@@ -2714,7 +2717,7 @@
|
|
|
2714
2717
|
display: inline-block;
|
|
2715
2718
|
height: 437px;
|
|
2716
2719
|
overflow: auto;
|
|
2717
|
-
width:
|
|
2720
|
+
width: 100% !important;
|
|
2718
2721
|
}
|
|
2719
2722
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview {
|
|
2720
2723
|
display: inline-table;
|
|
@@ -2802,26 +2805,26 @@
|
|
|
2802
2805
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-all-field-title-container .e-info:hover {
|
|
2803
2806
|
color: #317ab9;
|
|
2804
2807
|
}
|
|
2805
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2808
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2806
2809
|
-ms-flex: auto;
|
|
2807
2810
|
flex: auto;
|
|
2808
2811
|
margin-left: 18px;
|
|
2809
2812
|
}
|
|
2810
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2813
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-formula {
|
|
2811
2814
|
height: 100px;
|
|
2812
2815
|
}
|
|
2813
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2816
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-calc-custom-format-div {
|
|
2814
2817
|
margin-top: 15px;
|
|
2815
2818
|
}
|
|
2816
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2817
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2818
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2819
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2820
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2819
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-formula-title,
|
|
2820
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-field-name-title,
|
|
2821
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-olap-hierarchy-title,
|
|
2822
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-format-title,
|
|
2823
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-olap-member-title {
|
|
2821
2824
|
padding-left: 0;
|
|
2822
2825
|
padding-right: 0;
|
|
2823
2826
|
}
|
|
2824
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2827
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div .e-pivot-field-name-title {
|
|
2825
2828
|
margin-top: 0;
|
|
2826
2829
|
padding-top: 0;
|
|
2827
2830
|
}
|
|
@@ -2832,7 +2835,7 @@
|
|
|
2832
2835
|
float: left;
|
|
2833
2836
|
margin: 0;
|
|
2834
2837
|
}
|
|
2835
|
-
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2838
|
+
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2836
2839
|
margin-left: 0;
|
|
2837
2840
|
margin-right: 18px;
|
|
2838
2841
|
}
|
|
@@ -2849,13 +2852,13 @@
|
|
|
2849
2852
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2850
2853
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2851
2854
|
.e-bigger.e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2852
|
-
.e-bigger.e-pivot-calc-dialog-div .e-
|
|
2855
|
+
.e-bigger.e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2853
2856
|
.e-bigger.e-pivot-calc-dialog-div .e-olap-member-title,
|
|
2854
2857
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2855
2858
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
2856
2859
|
.e-bigger .e-pivot-calc-dialog-div .e-pivot-formula-title,
|
|
2857
2860
|
.e-bigger .e-pivot-calc-dialog-div .e-olap-hierarchy-title,
|
|
2858
|
-
.e-bigger .e-pivot-calc-dialog-div .e-
|
|
2861
|
+
.e-bigger .e-pivot-calc-dialog-div .e-pivot-format-title,
|
|
2859
2862
|
.e-bigger .e-pivot-calc-dialog-div .e-olap-member-title {
|
|
2860
2863
|
font-size: 14px;
|
|
2861
2864
|
padding: 6px 0;
|
|
@@ -2909,12 +2912,12 @@
|
|
|
2909
2912
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
2910
2913
|
font-size: 16px;
|
|
2911
2914
|
}
|
|
2912
|
-
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2913
|
-
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-
|
|
2915
|
+
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div,
|
|
2916
|
+
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2914
2917
|
margin-left: 24px;
|
|
2915
2918
|
}
|
|
2916
|
-
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2917
|
-
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-
|
|
2919
|
+
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div,
|
|
2920
|
+
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div.e-rtl .e-pivot-calc-outer-div .e-pivot-calculated-div {
|
|
2918
2921
|
margin-left: 0;
|
|
2919
2922
|
margin-right: 24px;
|
|
2920
2923
|
}
|
|
@@ -4794,8 +4797,7 @@
|
|
|
4794
4797
|
}
|
|
4795
4798
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-input-div,
|
|
4796
4799
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-member-options,
|
|
4797
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-custom-format-div
|
|
4798
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-olap-calc-custom-format-div {
|
|
4800
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-calc-custom-format-div {
|
|
4799
4801
|
margin-left: 20px;
|
|
4800
4802
|
margin-right: 20px;
|
|
4801
4803
|
margin-top: 20px;
|