cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Question regarding binding path syntax JSON

Former Member
0 Likes
612

Hi experts,

i have a question regarding element binding in SAPUI5.

{
	"Equipments": [
		{
			"EquipmentNr": "Equipment 0000000001",
			"Messpunkte": [
					{
						"MesspunktNr": "01"
					},
					{
						"MesspunktNr": "02"
					},
					{
						"MesspunktNr": "03"
					}
				]
		},
...
}

I use SplitApp controll with two master views. The first displays all Equipments (EquipmentNr) and the second masterview should display the "Messpunkte" of the selected equipment. Routing with parameters to the second master view works. But in this view I am not able to display The Messpunkte of the equipment.

The MasterPage2.controller.js with the onInit function is correct i guess:

onInit: function () {
			var oRouter = sap.ui.core.UIComponent.getRouterFor(this);
			oRouter.getRoute("master").attachPatternMatched(this._onObjectMatched, this);
		},
		_onObjectMatched: function (oEvent) {
			this.getView().bindElement({
				path: "/Equipments/" + oEvent.getParameter("arguments").equiPath,
				model: "equi"
			});
		}

The code of the MasterPage2 looks like:

	<Page 
		id="page2" 
		title="Messpunkte zum Equipment" 
		icon="sap-icon://action"
		showNavButton="true"
		navButtonPress="onNavBack">
			<content>
			<!--	<ObjectHeader
					title="{equi>Messpunkte}"/> -->
				<List
				items="{equi>/Messpunkte}">
					<StandardListItem
					title="{MesspunktNr}" />
				</List>
			</content>
	</Page>

The commend out part leads to the output [object Object],[object Object],[object Object]

The List control displays "No data".

Is there anybody with a hint maybe?

Thanks and regards

Benjamin

View Entire Topic
Former Member
0 Likes

I figured it out:

in the <items> aggregation of the <List> control I now use the <ObjectListItem> control and the title should look like:
title="{equi>MesspunktNr}"

I think it would also work with a StandardListItem but i didnt try.