@sapui5/sap.zen.dsh 1.96.31 → 1.96.32
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/package.json +1 -1
- package/src/sap/zen/dsh/.library +1 -1
- package/src/sap/zen/dsh/InACard/Component.js +1 -1
- package/src/sap/zen/dsh/InATile.js +1 -1
- package/src/sap/zen/dsh/PivotTable.js +1 -1
- package/src/sap/zen/dsh/dialogs/Component.js +1 -1
- package/src/sap/zen/dsh/firefly/ff8310.zen.buddha.js +3 -1
- package/src/sap/zen/dsh/library.js +2 -2
- package/src/sap/zen/dsh/olap/DataProvider.js +1 -1
- package/src/sap/zen/dsh/olap/OlapListBinding.js +1 -1
- package/src/sap/zen/dsh/olap/OlapListGridBinding.js +1 -1
- package/src/sap/zen/dsh/olap/OlapModel.js +1 -1
- package/src/sap/zen/dsh/olap/OlapPropertyBinding.js +1 -1
package/package.json
CHANGED
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<vendor>SAP SE</vendor>
|
|
8
8
|
<copyright>SAPUI5
|
|
9
9
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
10
|
-
<version>1.96.
|
|
10
|
+
<version>1.96.32</version>
|
|
11
11
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
12
12
|
<appData>
|
|
13
13
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -42,7 +42,7 @@ sap.ui.define(
|
|
|
42
42
|
* @param {string} [sId] ID for the new control, generated automatically if no ID is given
|
|
43
43
|
* @param {object} [mSettings] Initial settings for the new control
|
|
44
44
|
* @author SAP SE
|
|
45
|
-
* @version 1.96.
|
|
45
|
+
* @version 1.96.32
|
|
46
46
|
*
|
|
47
47
|
* @constructor
|
|
48
48
|
* @public
|
|
@@ -35788,10 +35788,12 @@ sap.zen.Page.prototype.doExport = function(exportType, exportVersion)
|
|
|
35788
35788
|
ltAxesProperties.put(loAxisPaging.getAxis(), ltAxisProperties);
|
|
35789
35789
|
}
|
|
35790
35790
|
ltResultSetPagingInfo.put(loResultSet, ltAxesProperties);
|
|
35791
|
+
// activate paging on row axis using defaultSize for package retrieval
|
|
35791
35792
|
loAxisPaging = ltAxisPaging.getByKey(oFF.AxisType.ROWS.getName());
|
|
35792
35793
|
loAxisPaging.setPagingMode(sap.zen.CResultSetPagingMode.ACTIVATE_PAGING.getBinaryValue(), sap.zen.ResultSetAxisPaging.OFFSET_DEFAULT, sap.zen.ResultSetAxisPaging.SIZE_DEFAULT);
|
|
35794
|
+
// need to Export all columns since column paging not supported by InA
|
|
35793
35795
|
loAxisPaging = ltAxisPaging.getByKey(oFF.AxisType.COLUMNS.getName());
|
|
35794
|
-
loAxisPaging.setPagingMode(0, sap.zen.ResultSetAxisPaging.OFFSET_DEFAULT, sap.zen.ResultSetAxisPaging.
|
|
35796
|
+
loAxisPaging.setPagingMode(0, sap.zen.ResultSetAxisPaging.OFFSET_DEFAULT, sap.zen.ResultSetAxisPaging.SIZE_ALL);
|
|
35795
35797
|
if (!loResultSet.getServerPaging().getState().isTypeOf(oFF.SyncState.IN_SYNC))
|
|
35796
35798
|
{
|
|
35797
35799
|
loResultSet.synchronize(null, null, false);
|
|
@@ -84,7 +84,7 @@ sap.ui.define(
|
|
|
84
84
|
],
|
|
85
85
|
elements: [],
|
|
86
86
|
noLibraryCSS: true,
|
|
87
|
-
version: "1.96.
|
|
87
|
+
version: "1.96.32"
|
|
88
88
|
}
|
|
89
89
|
);
|
|
90
90
|
/**
|
|
@@ -94,7 +94,7 @@ sap.ui.define(
|
|
|
94
94
|
* @name sap.zen.dsh
|
|
95
95
|
* @public
|
|
96
96
|
* @author SAP SE
|
|
97
|
-
* @version 1.96.
|
|
97
|
+
* @version 1.96.32
|
|
98
98
|
*/
|
|
99
99
|
var thisLib = sap.zen.dsh;
|
|
100
100
|
thisLib.Axis = Axis;
|
|
@@ -80,7 +80,7 @@ sap.ui.define(
|
|
|
80
80
|
* @param {object} oApplication the firefly application associated to the <code>OlapModel</code>
|
|
81
81
|
* @param {object} oQueryManager the firefly queryManager that is wrapped by the <code>DataProvider</code>
|
|
82
82
|
* @author SAP SE
|
|
83
|
-
* @version 1.96.
|
|
83
|
+
* @version 1.96.32
|
|
84
84
|
* @public
|
|
85
85
|
* @alias sap.zen.dsh.olap.DataProvider
|
|
86
86
|
*/
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* List binding implementation for <code>OlapModel</code>.
|
|
32
32
|
* @alias sap.zen.dsh.olap.OlapListGridBinding
|
|
33
33
|
* @extends sap.ui.model.ListBinding
|
|
34
|
-
* @version 1.96.
|
|
34
|
+
* @version 1.96.32
|
|
35
35
|
* @protected
|
|
36
36
|
*/
|
|
37
37
|
var OlapListGridBinding = ListBinding.extend(
|