Hi Nico,
I need this same functionality but I don't get it how you did it. I have data.json file and in TilesPage controller in onInit:
var oModel = new sap.ui.model.json.JSONModel("data.json"); | |
this.getView().setModel(oModel); |
And then in xml:
<TileContainer | |||
id="container" | |||
tileDelete="handleTileDelete" | |||
tiles="{/TileCollection}"> | |||
<StandardTile | |||
id="tile" | |||
icon="sap-icon://{icon}" | |||
title="{title}" | |||
press="handleTilePress" /> |
How you did to get this form: title="{tiles>title}" ?