@sapui5/sap.suite.ui.generic.template 1.136.10 → 1.136.11
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/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_fr.properties +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/CRUDManager.js +2 -1
- package/src/sap/suite/ui/generic/template/lib/CommonUtils.js +2 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/library.js +1 -1
package/package.json
CHANGED
|
@@ -964,7 +964,7 @@ sap.ui.define([
|
|
|
964
964
|
* @public
|
|
965
965
|
* @extends sap.ui.core.UIComponent
|
|
966
966
|
* @author SAP SE
|
|
967
|
-
* @version 1.136.
|
|
967
|
+
* @version 1.136.11
|
|
968
968
|
* @name sap.suite.ui.generic.template.lib.AppComponent
|
|
969
969
|
*/
|
|
970
970
|
var oAppComponent = UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
|
|
@@ -815,7 +815,8 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
815
815
|
ignorePersistence: true
|
|
816
816
|
});
|
|
817
817
|
});
|
|
818
|
-
|
|
818
|
+
var bIsDeterminingAction = mParameters.actionType === "determining";
|
|
819
|
+
oServices.oApplication.navigateToDetailContextIfPossible(oResponseContext, bIsDeterminingAction, oContextInfo.bIsDraft ? 2 * (1 + oContextInfo.bIsCreate) : 1, oContextInfo);
|
|
819
820
|
} else {
|
|
820
821
|
// Restore focus, because we don't navigate out
|
|
821
822
|
oServices.oApplication.setNextFocus(function(oBeforeData, fnFallback){
|
|
@@ -2000,7 +2000,8 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2000
2000
|
contexts: aContexts,
|
|
2001
2001
|
sourceControlHandler: oPresentationControlHandler,
|
|
2002
2002
|
label: oCustomData.Label,
|
|
2003
|
-
operationGrouping: ""
|
|
2003
|
+
operationGrouping: "",
|
|
2004
|
+
actionType: oCustomData.ActionType
|
|
2004
2005
|
}).then(function(aResponses) {
|
|
2005
2006
|
if (aResponses && aResponses.length > 0) {
|
|
2006
2007
|
var oResponse = aResponses[0];
|
|
@@ -3221,7 +3221,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
3221
3221
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
3222
3222
|
* @public
|
|
3223
3223
|
* @extends sap.ui.base.Object
|
|
3224
|
-
* @version 1.136.
|
|
3224
|
+
* @version 1.136.11
|
|
3225
3225
|
* @since 1.30.0
|
|
3226
3226
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
3227
3227
|
*/
|