@sapui5/sap.zen.dsh 1.122.0 → 1.123.0
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/AnalyticGrid.js +18 -18
- package/src/sap/zen/dsh/Dsh.js +1 -1
- package/src/sap/zen/dsh/ValueHelpRangeOperation.js +9 -9
- package/src/sap/zen/dsh/firefly/ff8300.zen.buddha.utils.native.js +1 -1
- package/src/sap/zen/dsh/firefly/ff8310.zen.buddha.js +54 -54
- package/src/sap/zen/dsh/library.js +2 -2
- package/src/sap/zen/dsh/widgets/SDKModel.js +1 -1
- package/src/sap/zen/dsh/widgets/ValueHelpDialog.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.
|
|
10
|
+
<version>1.123.0</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" >
|
|
@@ -15,24 +15,24 @@ sap.ui.define(
|
|
|
15
15
|
],
|
|
16
16
|
function (jQuery, Log, Control, URI, AnalyticGridRenderer ) {
|
|
17
17
|
// Provides control sap.zen.dsh.AnalyticGrid.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
18
|
+
/**
|
|
19
|
+
* Constructor for a new AnalyticGrid.
|
|
20
|
+
*
|
|
21
|
+
* @param {string} [sId] id for the new control, generated automatically if no id is given
|
|
22
|
+
* @param {object} [mSettings] initial settings for the new control
|
|
23
|
+
*
|
|
24
|
+
* @class
|
|
25
|
+
* Control for embedding a Design Studio Analytic Grid in an S/4 HANA Fiori application
|
|
26
|
+
* @extends sap.ui.core.Control
|
|
27
|
+
*
|
|
28
|
+
* @constructor
|
|
29
|
+
* @public
|
|
30
|
+
* @since 1.46
|
|
31
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
32
|
+
* @experimental Since version 1.46.
|
|
33
|
+
* API is incomplete and may change incompatibly
|
|
34
|
+
* @alias sap.zen.dsh.AnalyticGrid
|
|
35
|
+
*/
|
|
36
36
|
var AnalyticGrid = Control.extend(
|
|
37
37
|
"sap.zen.dsh.AnalyticGrid", /** @lends sap.zen.dsh.AnalyticGrid.prototype */
|
|
38
38
|
{
|
package/src/sap/zen/dsh/Dsh.js
CHANGED
|
@@ -8,15 +8,15 @@ sap.ui.define(
|
|
|
8
8
|
[
|
|
9
9
|
],
|
|
10
10
|
function(){
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Sort Type
|
|
13
|
+
*
|
|
14
|
+
* @enum {string}
|
|
15
|
+
* @alias sap.zen.dsh.ValueHelpRangeOperation
|
|
16
|
+
* @public
|
|
17
|
+
* @experimental
|
|
18
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
19
|
+
*/
|
|
20
20
|
var ValueHelpRangeOperation = {
|
|
21
21
|
/**
|
|
22
22
|
* The Between operation for the ranges.
|
|
@@ -2313,7 +2313,7 @@ $Firefly.createClass(
|
|
|
2313
2313
|
},
|
|
2314
2314
|
|
|
2315
2315
|
getIXListOfStringForSelectionFromStringArray : function (aStrings) {
|
|
2316
|
-
var result = sap.firefly.
|
|
2316
|
+
var result = sap.firefly.XList.create();
|
|
2317
2317
|
|
|
2318
2318
|
for (var j = 0; j < aStrings.length; j++) {
|
|
2319
2319
|
result.add(aStrings[j]);
|
|
@@ -224,9 +224,9 @@ sap.zen.AxisWrapper.prototype.getNameList = function(tDimensions)
|
|
|
224
224
|
{
|
|
225
225
|
if (oFF.isNull(tDimensions) || tDimensions.isEmpty())
|
|
226
226
|
{
|
|
227
|
-
return oFF.
|
|
227
|
+
return oFF.XList.create();
|
|
228
228
|
}
|
|
229
|
-
let ltDimensionNames = oFF.
|
|
229
|
+
let ltDimensionNames = oFF.XList.create();
|
|
230
230
|
for (let lDimensionIndex = 0; lDimensionIndex < tDimensions.size(); lDimensionIndex++)
|
|
231
231
|
{
|
|
232
232
|
let loDimension = tDimensions.get(lDimensionIndex);
|
|
@@ -1074,7 +1074,7 @@ sap.zen.MemberWrapper.prototype.reloadMember = function(oDataSource)
|
|
|
1074
1074
|
}
|
|
1075
1075
|
if (!this.mVariableMode)
|
|
1076
1076
|
{
|
|
1077
|
-
let ltKeys = oFF.
|
|
1077
|
+
let ltKeys = oFF.XList.create();
|
|
1078
1078
|
let lKey = this.getKey();
|
|
1079
1079
|
if (oFF.notNull(lKey))
|
|
1080
1080
|
{
|
|
@@ -6812,7 +6812,7 @@ sap.zen.ProjectionInstance.prototype.initMe = function(projectionString, tProjec
|
|
|
6812
6812
|
this.mtProjectionStrings = tProjectionString;
|
|
6813
6813
|
if (oFF.isNull(this.mtProjectionStrings))
|
|
6814
6814
|
{
|
|
6815
|
-
this.mtProjectionStrings = oFF.
|
|
6815
|
+
this.mtProjectionStrings = oFF.XList.create();
|
|
6816
6816
|
}
|
|
6817
6817
|
if (oFF.notNull(projectionString) && !this.mtProjectionStrings.contains(projectionString.getString()))
|
|
6818
6818
|
{
|
|
@@ -8164,7 +8164,7 @@ sap.zen.TemplateLoader.prototype.getTranslatedText = function(key)
|
|
|
8164
8164
|
};
|
|
8165
8165
|
sap.zen.TemplateLoader.prototype.getTranslatedTextsFor = function(componentName)
|
|
8166
8166
|
{
|
|
8167
|
-
let ltTexts = oFF.
|
|
8167
|
+
let ltTexts = oFF.XList.create();
|
|
8168
8168
|
let ltTextMap = null;
|
|
8169
8169
|
if (oFF.notNull(this.moLocalization))
|
|
8170
8170
|
{
|
|
@@ -11304,7 +11304,7 @@ sap.zen.CharacteristicWrapper.prototype.getMembersByKeys = function(tKeys, useDi
|
|
|
11304
11304
|
return oFF.XList.create();
|
|
11305
11305
|
}
|
|
11306
11306
|
let ltInternalMembers = oFF.XList.create();
|
|
11307
|
-
let ltNewKeys = oFF.
|
|
11307
|
+
let ltNewKeys = oFF.XList.create();
|
|
11308
11308
|
for (let lKeyIndex = 0; lKeyIndex < tKeys.size(); lKeyIndex++)
|
|
11309
11309
|
{
|
|
11310
11310
|
let lKey = tKeys.get(lKeyIndex);
|
|
@@ -11545,7 +11545,7 @@ sap.zen.CharacteristicWrapper.prototype.correctCartesianList = function(oCartesi
|
|
|
11545
11545
|
}
|
|
11546
11546
|
let lCartesianListIndex = 0;
|
|
11547
11547
|
let loFilterOperation = null;
|
|
11548
|
-
let ltMemberKeys = oFF.
|
|
11548
|
+
let ltMemberKeys = oFF.XList.create();
|
|
11549
11549
|
for (lCartesianListIndex = 0; lCartesianListIndex < oCartesianList.size(); lCartesianListIndex++)
|
|
11550
11550
|
{
|
|
11551
11551
|
loFilterOperation = oCartesianList.getOp(lCartesianListIndex);
|
|
@@ -11722,7 +11722,7 @@ sap.zen.CharacteristicWrapper.prototype.parseCartesianListToRangeList = function
|
|
|
11722
11722
|
}
|
|
11723
11723
|
return ltSelections;
|
|
11724
11724
|
}
|
|
11725
|
-
let ltMemberKeysOfSingleSelections = oFF.
|
|
11725
|
+
let ltMemberKeysOfSingleSelections = oFF.XList.create();
|
|
11726
11726
|
let lInternalKeys = 0;
|
|
11727
11727
|
for (lCartesianListIndex = 0; lCartesianListIndex < oCartesianList.size(); lCartesianListIndex++)
|
|
11728
11728
|
{
|
|
@@ -12044,7 +12044,7 @@ sap.zen.CharacteristicWrapper.prototype.parseInputString = function(tMemberKeys)
|
|
|
12044
12044
|
{
|
|
12045
12045
|
if (this.getMemberType() === sap.zen.Type.DATE)
|
|
12046
12046
|
{
|
|
12047
|
-
let ltValues = oFF.
|
|
12047
|
+
let ltValues = oFF.XList.create();
|
|
12048
12048
|
for (let lValueIndex = 0; lValueIndex < tMemberKeys.size(); lValueIndex++)
|
|
12049
12049
|
{
|
|
12050
12050
|
let lValue = tMemberKeys.get(lValueIndex);
|
|
@@ -12105,7 +12105,7 @@ sap.zen.CharacteristicWrapper.prototype.parseFullRangeQueryByField = function(oI
|
|
|
12105
12105
|
}
|
|
12106
12106
|
let lFullRangesIndex = 0;
|
|
12107
12107
|
let loRange = null;
|
|
12108
|
-
let ltMemberKeysOfSingleSelections = oFF.
|
|
12108
|
+
let ltMemberKeysOfSingleSelections = oFF.XList.create();
|
|
12109
12109
|
for (lFullRangesIndex = 0; lFullRangesIndex < tFullRanges.size(); lFullRangesIndex++)
|
|
12110
12110
|
{
|
|
12111
12111
|
loRange = tFullRanges.get(lFullRangesIndex);
|
|
@@ -12158,7 +12158,7 @@ sap.zen.CharacteristicWrapper.prototype.setInputString = function(inputString)
|
|
|
12158
12158
|
};
|
|
12159
12159
|
sap.zen.CharacteristicWrapper.prototype.addInputString = function(inputString)
|
|
12160
12160
|
{
|
|
12161
|
-
let ltMemberKeys = oFF.
|
|
12161
|
+
let ltMemberKeys = oFF.XList.create();
|
|
12162
12162
|
ltMemberKeys.add(inputString);
|
|
12163
12163
|
let ltDimensionMembers = this.getMembersByKeys(ltMemberKeys, true);
|
|
12164
12164
|
if (ltDimensionMembers.isEmpty())
|
|
@@ -12245,8 +12245,8 @@ sap.zen.CharacteristicWrapper.prototype.setFilterRangesForField = function(oQuer
|
|
|
12245
12245
|
let loRange = null;
|
|
12246
12246
|
let ltInternalDimensionMembers = oFF.XList.create();
|
|
12247
12247
|
let loInternalDimensionMember = null;
|
|
12248
|
-
let ltKeysForProvidedField = oFF.
|
|
12249
|
-
let ltKeysForCartesianListField = oFF.
|
|
12248
|
+
let ltKeysForProvidedField = oFF.XList.create();
|
|
12249
|
+
let ltKeysForCartesianListField = oFF.XList.create();
|
|
12250
12250
|
if (loCartesianList.size() > 0 && loCartesianList.getField().getPresentationType() !== oInternalField.getPresentationType() && oInternalField.getPresentationType().isTypeOf(oFF.PresentationType.DISPLAY_KEY))
|
|
12251
12251
|
{
|
|
12252
12252
|
for (let lCartesianListIndex = 0; lCartesianListIndex < loCartesianList.size(); lCartesianListIndex++)
|
|
@@ -12445,7 +12445,7 @@ sap.zen.CharacteristicWrapper.prototype.setFullRangeQuery = function(tFullRanges
|
|
|
12445
12445
|
{
|
|
12446
12446
|
let lFullRangesIndex = 0;
|
|
12447
12447
|
let loRange = null;
|
|
12448
|
-
let ltMemberKeysOfSingleSelections = oFF.
|
|
12448
|
+
let ltMemberKeysOfSingleSelections = oFF.XList.create();
|
|
12449
12449
|
for (lFullRangesIndex = 0; lFullRangesIndex < tFullRanges.size(); lFullRangesIndex++)
|
|
12450
12450
|
{
|
|
12451
12451
|
loRange = tFullRanges.get(lFullRangesIndex);
|
|
@@ -12566,7 +12566,7 @@ sap.zen.CharacteristicWrapper.prototype.getValueForField = function(stringValue,
|
|
|
12566
12566
|
{
|
|
12567
12567
|
if (oFF.XStringUtils.isNotNullAndNotEmpty(stringValue))
|
|
12568
12568
|
{
|
|
12569
|
-
let ltMemberKeysOfSingleSelections = oFF.
|
|
12569
|
+
let ltMemberKeysOfSingleSelections = oFF.XList.create();
|
|
12570
12570
|
ltMemberKeysOfSingleSelections.add(stringValue);
|
|
12571
12571
|
let ltDimensionMembers = this.getMembersByKeys(ltMemberKeysOfSingleSelections, true);
|
|
12572
12572
|
if (!ltDimensionMembers.isEmpty())
|
|
@@ -14648,7 +14648,7 @@ sap.zen.DimensionMember.prototype.getKeyFieldValue = function(useDisplayKey)
|
|
|
14648
14648
|
let loInternalFieldValue = loInternalDimensionMember.getFieldValue(loInternalField);
|
|
14649
14649
|
if (oFF.isNull(loInternalFieldValue))
|
|
14650
14650
|
{
|
|
14651
|
-
let ltValues = oFF.
|
|
14651
|
+
let ltValues = oFF.XList.create();
|
|
14652
14652
|
ltValues.add(loInternalDimensionMember.getName());
|
|
14653
14653
|
let ltDimensionMembers = loDimension.getDimensionMembersForFieldValues(loInternalDimension.getKeyField().getName(), ltValues);
|
|
14654
14654
|
let loDimensionMember = ltDimensionMembers.get(0);
|
|
@@ -18995,7 +18995,7 @@ sap.zen.CUrlParam.staticSetup = function()
|
|
|
18995
18995
|
{
|
|
18996
18996
|
return;
|
|
18997
18997
|
}
|
|
18998
|
-
sap.zen.CUrlParam.stUrlParams = oFF.
|
|
18998
|
+
sap.zen.CUrlParam.stUrlParams = oFF.XList.create();
|
|
18999
18999
|
sap.zen.CUrlParam.XSYSTEM = sap.zen.CUrlParam.create("XSYSTEM");
|
|
19000
19000
|
sap.zen.CUrlParam.XQUERY = sap.zen.CUrlParam.create("XQUERY");
|
|
19001
19001
|
sap.zen.CUrlParam.XTITLE = sap.zen.CUrlParam.create("XTITLE");
|
|
@@ -22841,7 +22841,7 @@ sap.zen.Dimension.prototype.createValueObjectForField = function(oField, value)
|
|
|
22841
22841
|
}
|
|
22842
22842
|
if (oFF.isNull(loDate) && oFF.XStringUtils.isNotNullAndNotEmpty(value))
|
|
22843
22843
|
{
|
|
22844
|
-
let ltValuess = oFF.
|
|
22844
|
+
let ltValuess = oFF.XList.create();
|
|
22845
22845
|
ltValuess.add(value);
|
|
22846
22846
|
let ltDimensionMembers = this.getDimensionMembersForFieldValues(this.getKeyField(null, false), ltValuess);
|
|
22847
22847
|
if (!ltDimensionMembers.isEmpty())
|
|
@@ -23267,7 +23267,7 @@ sap.zen.Dimension.prototype.getAttributes = function()
|
|
|
23267
23267
|
{
|
|
23268
23268
|
return null;
|
|
23269
23269
|
}
|
|
23270
|
-
let ltAttributes = oFF.
|
|
23270
|
+
let ltAttributes = oFF.XList.create();
|
|
23271
23271
|
let ltInternalAttributes = loInternalDimension.getAttributes();
|
|
23272
23272
|
if (oFF.notNull(ltInternalAttributes) && !ltInternalAttributes.isEmpty())
|
|
23273
23273
|
{
|
|
@@ -24066,7 +24066,7 @@ sap.zen.Dimension.prototype.setUDH = function(active, triggerChangedEvent)
|
|
|
24066
24066
|
let loQueryModel = loInternalDimension.getQueryModel();
|
|
24067
24067
|
let ltUDHDimensions = null;
|
|
24068
24068
|
let loUDH = sap.zen.Dimension.sGetUDHObject(loInternalDimension);
|
|
24069
|
-
ltUDHDimensions = oFF.
|
|
24069
|
+
ltUDHDimensions = oFF.XList.create();
|
|
24070
24070
|
if (oFF.notNull(loUDH) && loUDH.isActive() && active === false)
|
|
24071
24071
|
{
|
|
24072
24072
|
ltUDHDimensions.addAll(loUDH.getDimensionNames());
|
|
@@ -25817,7 +25817,7 @@ sap.zen.CellSetRenderer.prototype.tupleMatches = function(oTuple)
|
|
|
25817
25817
|
let ltListOfProjectionStrings;
|
|
25818
25818
|
if (loProjectionInstance.isString())
|
|
25819
25819
|
{
|
|
25820
|
-
ltListOfProjectionStrings = oFF.
|
|
25820
|
+
ltListOfProjectionStrings = oFF.XList.create();
|
|
25821
25821
|
ltListOfProjectionStrings.add(loProjectionInstance.getProjectionString().getString());
|
|
25822
25822
|
}
|
|
25823
25823
|
else
|
|
@@ -29103,8 +29103,8 @@ sap.zen.DataSource.prototype.mtDataLimits = null;
|
|
|
29103
29103
|
sap.zen.DataSource.prototype.create = function()
|
|
29104
29104
|
{
|
|
29105
29105
|
this.moResultSet = sap.zen.ResultSetWrapper.create(this);
|
|
29106
|
-
this.mtNavigationAllowedSemanticSources = oFF.
|
|
29107
|
-
this.mtNavigationSemanticSources = oFF.
|
|
29106
|
+
this.mtNavigationAllowedSemanticSources = oFF.XList.create();
|
|
29107
|
+
this.mtNavigationSemanticSources = oFF.XList.create();
|
|
29108
29108
|
this.mtNavigationSemanticMappingsIntToExt = oFF.XHashMapOfStringByString.create();
|
|
29109
29109
|
this.mtNavigationSemanticMappingsExtToInt = oFF.XHashMapOfStringByString.create();
|
|
29110
29110
|
this.mtNavigationMapIntToExt = oFF.XHashMapOfStringByString.create();
|
|
@@ -29648,7 +29648,7 @@ sap.zen.DataSource.prototype.getNavigationExternalNameForInternalName = function
|
|
|
29648
29648
|
};
|
|
29649
29649
|
sap.zen.DataSource.prototype.getNavigationInternalNamesForExternalName = function(name)
|
|
29650
29650
|
{
|
|
29651
|
-
let ltInternalNames = oFF.
|
|
29651
|
+
let ltInternalNames = oFF.XList.create();
|
|
29652
29652
|
if (this.useNavigationSemanticMappings())
|
|
29653
29653
|
{
|
|
29654
29654
|
let lInternalName = this.mtNavigationSemanticMappingsExtToInt.getByKey(name);
|
|
@@ -34009,7 +34009,7 @@ sap.zen.Page.prototype.getNavigationParameterValueInternal = function(navParamNa
|
|
|
34009
34009
|
};
|
|
34010
34010
|
sap.zen.Page.prototype.setNavigationParameterValue = function(navParamName, dataSourceName, variableName)
|
|
34011
34011
|
{
|
|
34012
|
-
let ltInternalObjectNamesApplied = oFF.
|
|
34012
|
+
let ltInternalObjectNamesApplied = oFF.XList.create();
|
|
34013
34013
|
let ltDataSources = oFF.XList.create();
|
|
34014
34014
|
let loDataSourceIterator = null;
|
|
34015
34015
|
let loDataSource = null;
|
|
@@ -34043,7 +34043,7 @@ sap.zen.Page.prototype.setNavigationParameterValue = function(navParamName, data
|
|
|
34043
34043
|
{
|
|
34044
34044
|
continue;
|
|
34045
34045
|
}
|
|
34046
|
-
ltNavParams = oFF.
|
|
34046
|
+
ltNavParams = oFF.XList.create();
|
|
34047
34047
|
if (oFF.XStringUtils.isNotNullAndNotEmpty(navParamName))
|
|
34048
34048
|
{
|
|
34049
34049
|
ltNavParams.add(navParamName);
|
|
@@ -34280,7 +34280,7 @@ sap.zen.Page.prototype.initBaseInternal = function()
|
|
|
34280
34280
|
this.mStartUpScriptAlreadyExecuted = false;
|
|
34281
34281
|
sap.buddha.XJsonObject.setXWindow(this.moWindow);
|
|
34282
34282
|
this.mtAllRequiredModules = oFF.XHashSetOfString.create();
|
|
34283
|
-
this.mtNewRequiredModules = oFF.
|
|
34283
|
+
this.mtNewRequiredModules = oFF.XList.create();
|
|
34284
34284
|
let ltDataSourceNodes = this.moRootNode.getChildren("data_source_alias");
|
|
34285
34285
|
let ltComponentNodes = this.moRootNode.getChildren("component");
|
|
34286
34286
|
let loComponentNodeIterator = ltComponentNodes.getIterator();
|
|
@@ -34391,7 +34391,7 @@ sap.zen.Page.prototype.extractNavigationInitialState = function(tParameters)
|
|
|
34391
34391
|
};
|
|
34392
34392
|
sap.zen.Page.prototype.extractNavigationAllowedSemanticSource = function(tParameters)
|
|
34393
34393
|
{
|
|
34394
|
-
let ltNavigationAllowedSemanticSources = oFF.
|
|
34394
|
+
let ltNavigationAllowedSemanticSources = oFF.XList.create();
|
|
34395
34395
|
if (oFF.notNull(tParameters) && tParameters.containsKey(sap.zen.CUrlParam.NAV_ALLOWED_SEMANTIC_SOURCES.getValue()))
|
|
34396
34396
|
{
|
|
34397
34397
|
let lAllowedSources = tParameters.getByKey(sap.zen.CUrlParam.NAV_ALLOWED_SEMANTIC_SOURCES.getValue());
|
|
@@ -35664,7 +35664,7 @@ sap.zen.Page.prototype.getTranslatedTextsFor = function(componentName)
|
|
|
35664
35664
|
{
|
|
35665
35665
|
return loTemplateLoader.getTranslatedTextsFor(componentName);
|
|
35666
35666
|
}
|
|
35667
|
-
return oFF.
|
|
35667
|
+
return oFF.XList.create();
|
|
35668
35668
|
};
|
|
35669
35669
|
sap.zen.Page.prototype.setForcePrompt = function(forcePrompt)
|
|
35670
35670
|
{
|
|
@@ -36170,7 +36170,7 @@ sap.zen.Page.prototype.addAddtionalRequiredJavaScripts = function(tAddtionalRequ
|
|
|
36170
36170
|
{
|
|
36171
36171
|
if (oFF.isNull(this.mtAddtionalRequiredJavaScripts))
|
|
36172
36172
|
{
|
|
36173
|
-
this.mtAddtionalRequiredJavaScripts = oFF.
|
|
36173
|
+
this.mtAddtionalRequiredJavaScripts = oFF.XList.create();
|
|
36174
36174
|
}
|
|
36175
36175
|
for (let i = 0; i < tAddtionalRequiredJavaScripts.size(); i++)
|
|
36176
36176
|
{
|
|
@@ -36356,7 +36356,7 @@ sap.zen.Page.prototype.setVisiblePrompts = function(visiblePrompts)
|
|
|
36356
36356
|
}
|
|
36357
36357
|
if (jsonUtil.isArray())
|
|
36358
36358
|
{
|
|
36359
|
-
this.mtVisiblePrompts = oFF.
|
|
36359
|
+
this.mtVisiblePrompts = oFF.XList.create();
|
|
36360
36360
|
let arr = jsonUtil.getArray();
|
|
36361
36361
|
for (let i = 0; i < arr.size(); i++)
|
|
36362
36362
|
{
|
|
@@ -37850,7 +37850,7 @@ sap.zen.ApplicationPropertiesComponent.prototype.updateGlobalVariables = functio
|
|
|
37850
37850
|
};
|
|
37851
37851
|
sap.zen.ApplicationPropertiesComponent.prototype.getGlobalVariableNames = function()
|
|
37852
37852
|
{
|
|
37853
|
-
let ltGlobalVariableNames = oFF.
|
|
37853
|
+
let ltGlobalVariableNames = oFF.XList.create();
|
|
37854
37854
|
let loInitParametersNode = this.getInitParameters();
|
|
37855
37855
|
if (oFF.isNull(loInitParametersNode))
|
|
37856
37856
|
{
|
|
@@ -38552,7 +38552,7 @@ sap.zen.ContextMenuControl.SCALING_PREFIX = "SCALING_";
|
|
|
38552
38552
|
sap.zen.ContextMenuControl.DECIMAL_PREFIX = "DECIMAL_";
|
|
38553
38553
|
sap.zen.ContextMenuControl.deserialize = function(serialisation)
|
|
38554
38554
|
{
|
|
38555
|
-
let result = oFF.
|
|
38555
|
+
let result = oFF.XList.create();
|
|
38556
38556
|
let length = oFF.XString.size(serialisation);
|
|
38557
38557
|
let counterBackslash = 0;
|
|
38558
38558
|
let start = 0;
|
|
@@ -42666,7 +42666,7 @@ sap.zen.ContainerComponent.prototype.isSmartLayout = function()
|
|
|
42666
42666
|
};
|
|
42667
42667
|
sap.zen.ContainerComponent.prototype.removeChildItemRefs = function()
|
|
42668
42668
|
{
|
|
42669
|
-
this.mtChildNames = oFF.
|
|
42669
|
+
this.mtChildNames = oFF.XList.create();
|
|
42670
42670
|
this.setContentChanged(true);
|
|
42671
42671
|
};
|
|
42672
42672
|
sap.zen.ContainerComponent.prototype.addChildItemRef = function(child)
|
|
@@ -43526,7 +43526,7 @@ sap.zen.FilterBarControl.prototype.create = function()
|
|
|
43526
43526
|
let lUid = oFF.XStringUtils.concatenate2(this.getName(), "_filterbar1");
|
|
43527
43527
|
this.initControl(lUid, "filterbar");
|
|
43528
43528
|
this.getPage().addRequireModule("zen.rt.components.filterbar/resources/js/filterbar_handler");
|
|
43529
|
-
this.mtVisibleDimensionNames = oFF.
|
|
43529
|
+
this.mtVisibleDimensionNames = oFF.XList.create();
|
|
43530
43530
|
this.mVisibleDimensionsChanged = true;
|
|
43531
43531
|
this.mApplyAllFiltersFlag = false;
|
|
43532
43532
|
this.mCreateFilters = true;
|
|
@@ -43894,7 +43894,7 @@ sap.zen.FilterBarControl.prototype.getDefaultHeightAsString = function()
|
|
|
43894
43894
|
};
|
|
43895
43895
|
sap.zen.FilterBarControl.prototype.getDimNames = function()
|
|
43896
43896
|
{
|
|
43897
|
-
let ltDimensionNames = oFF.
|
|
43897
|
+
let ltDimensionNames = oFF.XList.create();
|
|
43898
43898
|
for (let lChildIndex = 0; lChildIndex < this.mtChildren.size(); lChildIndex++)
|
|
43899
43899
|
{
|
|
43900
43900
|
let loDimensionFilterComponent = this.mtChildren.get(lChildIndex);
|
|
@@ -44067,7 +44067,7 @@ sap.zen.FilterBarClassicControl.prototype.getDefaultHeightAsString = function()
|
|
|
44067
44067
|
};
|
|
44068
44068
|
sap.zen.FilterBarClassicControl.prototype.getDimensionNames = function()
|
|
44069
44069
|
{
|
|
44070
|
-
let ltDimensionNames = oFF.
|
|
44070
|
+
let ltDimensionNames = oFF.XList.create();
|
|
44071
44071
|
for (let lChildIndex = 0; lChildIndex < this.mtChildren.size(); lChildIndex++)
|
|
44072
44072
|
{
|
|
44073
44073
|
let loDimensionFilterComponent = this.mtChildren.get(lChildIndex);
|
|
@@ -44214,8 +44214,8 @@ sap.zen.GridlayoutControl.prototype.create = function()
|
|
|
44214
44214
|
this.getPage().addRequireModule("zen.rt.components/resources/js/gridlayout_handler");
|
|
44215
44215
|
let lUid = oFF.XStringUtils.concatenate2(this.getName(), "_grid");
|
|
44216
44216
|
this.initControl(lUid, "gridlayout");
|
|
44217
|
-
this.mtColumnNodeChildren = oFF.
|
|
44218
|
-
this.mtRowNodeChildren = oFF.
|
|
44217
|
+
this.mtColumnNodeChildren = oFF.XList.create();
|
|
44218
|
+
this.mtRowNodeChildren = oFF.XList.create();
|
|
44219
44219
|
let loRootNode = this.getInitParameters();
|
|
44220
44220
|
if (oFF.notNull(loRootNode))
|
|
44221
44221
|
{
|
|
@@ -44305,7 +44305,7 @@ sap.zen.GridlayoutControl.prototype.renderControlSpecificContent = function(oRen
|
|
|
44305
44305
|
};
|
|
44306
44306
|
sap.zen.GridlayoutControl.prototype.removeRowSettings = function()
|
|
44307
44307
|
{
|
|
44308
|
-
this.mtRowNodeChildren = oFF.
|
|
44308
|
+
this.mtRowNodeChildren = oFF.XList.create();
|
|
44309
44309
|
};
|
|
44310
44310
|
sap.zen.GridlayoutControl.prototype.addRowSetting = function(height)
|
|
44311
44311
|
{
|
|
@@ -44313,7 +44313,7 @@ sap.zen.GridlayoutControl.prototype.addRowSetting = function(height)
|
|
|
44313
44313
|
};
|
|
44314
44314
|
sap.zen.GridlayoutControl.prototype.removeColumnSettings = function()
|
|
44315
44315
|
{
|
|
44316
|
-
this.mtColumnNodeChildren = oFF.
|
|
44316
|
+
this.mtColumnNodeChildren = oFF.XList.create();
|
|
44317
44317
|
};
|
|
44318
44318
|
sap.zen.GridlayoutControl.prototype.addColumnSetting = function(width)
|
|
44319
44319
|
{
|
|
@@ -45129,7 +45129,7 @@ sap.zen.Html5ChartControl.prototype.getChartTypeNode = function(create)
|
|
|
45129
45129
|
loChartTypeNode = loTypeNode.getFirstChildWithNameTag(lChartType);
|
|
45130
45130
|
if (oFF.isNull(loChartTypeNode) && create)
|
|
45131
45131
|
{
|
|
45132
|
-
let ltPath = oFF.
|
|
45132
|
+
let ltPath = oFF.XList.create();
|
|
45133
45133
|
ltPath.add(lChartType);
|
|
45134
45134
|
loChartTypeNode = this.createNodes(loTypeNode, ltPath);
|
|
45135
45135
|
}
|
|
@@ -46438,7 +46438,7 @@ sap.zen.ListboxControl.prototype.renderContentInternal = function(oRenderManager
|
|
|
46438
46438
|
sap.zen.ListboxControl.prototype.setSelection = function(selectedKey)
|
|
46439
46439
|
{
|
|
46440
46440
|
let lSelectedKey = selectedKey;
|
|
46441
|
-
let ltSplitString = oFF.
|
|
46441
|
+
let ltSplitString = oFF.XList.create();
|
|
46442
46442
|
let lDelemiter = "|SeP|";
|
|
46443
46443
|
if (oFF.XString.endsWith(lSelectedKey, lDelemiter))
|
|
46444
46444
|
{
|
|
@@ -46490,7 +46490,7 @@ sap.zen.ListboxControl.prototype.setSelectedValues = function(keys)
|
|
|
46490
46490
|
};
|
|
46491
46491
|
sap.zen.ListboxControl.prototype.getSelectedValues = function()
|
|
46492
46492
|
{
|
|
46493
|
-
let ltStrings = oFF.
|
|
46493
|
+
let ltStrings = oFF.XList.create();
|
|
46494
46494
|
let loSelectedItemIterator = this.mtAllSelectedItems.getIterator();
|
|
46495
46495
|
while (loSelectedItemIterator.hasNext())
|
|
46496
46496
|
{
|
|
@@ -46501,7 +46501,7 @@ sap.zen.ListboxControl.prototype.getSelectedValues = function()
|
|
|
46501
46501
|
};
|
|
46502
46502
|
sap.zen.ListboxControl.prototype.getSelectedTexts = function()
|
|
46503
46503
|
{
|
|
46504
|
-
let ltStrings = oFF.
|
|
46504
|
+
let ltStrings = oFF.XList.create();
|
|
46505
46505
|
let loSelectedItemsIterator = this.mtAllSelectedItems.getIterator();
|
|
46506
46506
|
while (loSelectedItemsIterator.hasNext())
|
|
46507
46507
|
{
|
|
@@ -47162,7 +47162,7 @@ sap.zen.SplitterControl.prototype.onResize = function(value)
|
|
|
47162
47162
|
};
|
|
47163
47163
|
sap.zen.SplitterControl.prototype.parseJsonFromEventOnResize = function(jsonString)
|
|
47164
47164
|
{
|
|
47165
|
-
let ltSizes = oFF.
|
|
47165
|
+
let ltSizes = oFF.XList.create();
|
|
47166
47166
|
let loJsonParser = this.getJsonParser();
|
|
47167
47167
|
let loJsonObject = loJsonParser.parse(jsonString);
|
|
47168
47168
|
let loJsonElement = loJsonObject.asStructure().getByKey("tNewSizes");
|
|
@@ -50012,9 +50012,9 @@ sap.zen.Dialog.prototype.create = function()
|
|
|
50012
50012
|
this.moGridlayoutControl.setBottomMarginAsStringWoCheck("34");
|
|
50013
50013
|
this.moGridlayoutControl.setWidthAsStringWoCheck("auto");
|
|
50014
50014
|
this.moGridlayoutControl.setHeightAsStringWoCheck("auto");
|
|
50015
|
-
let sRowNodeChildren = oFF.
|
|
50015
|
+
let sRowNodeChildren = oFF.XList.create();
|
|
50016
50016
|
sRowNodeChildren.add("1");
|
|
50017
|
-
let sColNodeChildren = oFF.
|
|
50017
|
+
let sColNodeChildren = oFF.XList.create();
|
|
50018
50018
|
sColNodeChildren.add("1");
|
|
50019
50019
|
this.moGridlayoutControl.setSFinMode(this.mSfinMode, 0);
|
|
50020
50020
|
this.moGridlayoutControl.createGrid(1, 1, sRowNodeChildren, sColNodeChildren);
|
|
@@ -50614,7 +50614,7 @@ sap.zen.AbstractFilterComponentBase.prototype.validateFilterConfig = function(oC
|
|
|
50614
50614
|
ltRanges.add(loRange);
|
|
50615
50615
|
}
|
|
50616
50616
|
}
|
|
50617
|
-
let ltInputValues = oFF.
|
|
50617
|
+
let ltInputValues = oFF.XList.create();
|
|
50618
50618
|
if (oFF.notNull(oConfig.mInputValueAsString))
|
|
50619
50619
|
{
|
|
50620
50620
|
ltInputValues.add(oConfig.mInputValueAsString);
|
|
@@ -50654,7 +50654,7 @@ sap.zen.AbstractFilterComponentBase.prototype.applyFilterConfig = function(oConf
|
|
|
50654
50654
|
{
|
|
50655
50655
|
loCharacteristicWrapper.setFullRangeQuery(oConfig.mtFullRanges);
|
|
50656
50656
|
}
|
|
50657
|
-
let ltInputValues = oFF.
|
|
50657
|
+
let ltInputValues = oFF.XList.create();
|
|
50658
50658
|
if (oFF.notNull(oConfig.mInputValueAsString))
|
|
50659
50659
|
{
|
|
50660
50660
|
ltInputValues.add(oConfig.mInputValueAsString);
|
|
@@ -51099,7 +51099,7 @@ sap.zen.AbstractFilterComponentBase.prototype.renderInitialJson = function(oRend
|
|
|
51099
51099
|
};
|
|
51100
51100
|
sap.zen.AbstractFilterComponentBase.prototype.renderFilterPanelJson = function(oRenderSerializer)
|
|
51101
51101
|
{
|
|
51102
|
-
let ltCharacteristics = oFF.
|
|
51102
|
+
let ltCharacteristics = oFF.XList.create();
|
|
51103
51103
|
if (oFF.notNull(this.moCharacteristicContainer))
|
|
51104
51104
|
{
|
|
51105
51105
|
if (this.mVariableScreen)
|
|
@@ -51696,7 +51696,7 @@ sap.zen.AbstractFilterComponentBase.prototype.parseJsonElementAxes = function(oJ
|
|
|
51696
51696
|
};
|
|
51697
51697
|
sap.zen.AbstractFilterComponentBase.prototype.parseJsonElementAxis = function(oJsonElementAxis)
|
|
51698
51698
|
{
|
|
51699
|
-
let ltAxisDimensionNames = oFF.
|
|
51699
|
+
let ltAxisDimensionNames = oFF.XList.create();
|
|
51700
51700
|
let loJsonListAxisDimensions = oJsonElementAxis.asList();
|
|
51701
51701
|
let lAmountOfDimensionsOnAxis = loJsonListAxisDimensions.size();
|
|
51702
51702
|
for (let lDimensionIndex = 0; lDimensionIndex < lAmountOfDimensionsOnAxis; lDimensionIndex++)
|
|
@@ -51743,7 +51743,7 @@ sap.zen.AbstractFilterComponentBase.prototype.parseJsonElementFilter = function(
|
|
|
51743
51743
|
{
|
|
51744
51744
|
if (loJsonElementInput.isList())
|
|
51745
51745
|
{
|
|
51746
|
-
loFilterConfig.mtInputValuesAsString = oFF.
|
|
51746
|
+
loFilterConfig.mtInputValuesAsString = oFF.XList.create();
|
|
51747
51747
|
let loJsonListInput = loJsonElementInput.asList();
|
|
51748
51748
|
for (let lListInputIndex = 0; lListInputIndex < loJsonListInput.size(); lListInputIndex++)
|
|
51749
51749
|
{
|
|
@@ -51769,7 +51769,7 @@ sap.zen.AbstractFilterComponentBase.prototype.parseJsonElementFilter = function(
|
|
|
51769
51769
|
let loJsonElementKeys = loJsonListFilterItemStructure.getByKey(sap.zen.FilterConfig.cKEYS);
|
|
51770
51770
|
if (oFF.notNull(loJsonElementKeys))
|
|
51771
51771
|
{
|
|
51772
|
-
loFilterConfig.mtKeys = oFF.
|
|
51772
|
+
loFilterConfig.mtKeys = oFF.XList.create();
|
|
51773
51773
|
let loJsonListKeys = loJsonElementKeys.asList();
|
|
51774
51774
|
for (let lListKeysIndex = 0; lListKeysIndex < loJsonListKeys.size(); lListKeysIndex++)
|
|
51775
51775
|
{
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.123.0
|
|
35
35
|
*/
|
|
36
36
|
var thisLib = sap.ui.getCore().initLibrary(
|
|
37
37
|
{
|
|
@@ -56,7 +56,7 @@ sap.ui.define(
|
|
|
56
56
|
],
|
|
57
57
|
elements: [],
|
|
58
58
|
noLibraryCSS: true,
|
|
59
|
-
version: "1.
|
|
59
|
+
version: "1.123.0"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|
|
@@ -26,7 +26,7 @@ sap.ui.define(
|
|
|
26
26
|
* @constructor
|
|
27
27
|
* @public
|
|
28
28
|
* @name sap.zen.dsh.widgets.SDKModel
|
|
29
|
-
* @deprecated
|
|
29
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
30
30
|
*/
|
|
31
31
|
var SDKModel = ClientModel.extend(
|
|
32
32
|
"sap.zen.dsh.widgets.SDKModel", {
|
|
@@ -55,7 +55,7 @@ sap.ui.define(
|
|
|
55
55
|
* @param {object} [mSettings] Initial settings for the new control
|
|
56
56
|
* @class The ValueHelpDialog control can be used to implement a value help for an input field.
|
|
57
57
|
* @extends sap.m.Dialog
|
|
58
|
-
* @deprecated
|
|
58
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
59
59
|
* @constructor
|
|
60
60
|
* @public
|
|
61
61
|
* @alias sap.zen.dsh.ValueHelpDialog
|