| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- sap.ui.define([
- "./BaseController",
- "sap/ui/model/json/JSONModel"
- ], function (BaseController, JSONModel) {
- "use strict";
- return BaseController.extend("sap.ui.demo.orderbrowser.controller.App", {
- onInit : function () {
- var oViewModel,
- fnSetAppNotBusy,
- iOriginalBusyDelay = this.getView().getBusyIndicatorDelay();
- oViewModel = new JSONModel({
- busy : true,
- delay : 0,
- layout : "OneColumn",
- previousLayout : "",
- actionButtonsInfo : {
- midColumn : {
- fullScreen : false
- }
- }
- });
- this.setModel(oViewModel, "appView");
- fnSetAppNotBusy = function() {
- oViewModel.setProperty("/busy", false);
- oViewModel.setProperty("/delay", iOriginalBusyDelay);
- };
- // since then() has no "reject"-path attach to the MetadataFailed-Event to disable the busy indicator in case of an error
- this.getOwnerComponent().getModel().metadataLoaded().then(fnSetAppNotBusy);
- this.getOwnerComponent().getModel().attachMetadataFailed(fnSetAppNotBusy);
- // apply content density mode to root view
- this.getView().addStyleClass(this.getOwnerComponent().getContentDensityClass());
- }
- });
- });
|