cancel
Showing results for 
Search instead for 
Did you mean: 

Question regarding binding path syntax JSON

Former Member
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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.

Answers (1)

Answers (1)

Sharathmg
Active Contributor
0 Kudos

Where are loading the model "equi" used in your binding? It should be done in the init.

Former Member
0 Kudos

It is done in the manifest.json.

The model loading is not the point. i get access to the model. But thanks anyway