Can't bind property from model to control on XML view
问题 I trying to migrate my app on new version of Openui5 (1.48) and have some problems with model bindings. I am using sap.ui.getCore().setModel(oModel, "local") for model declaration and when I trying to bind some controls to values from this model like this: <Text text="{local>/count}"/> value isn't displayed but if I will get this model, set it to view in controller and remove > from xml var oModel = sap.ui.getCore().getModel("local"); this.getView().setModel(oModel); XML <Text text="{/count}"