Let's say I have Employee
entity associated with Address
entity in XSOData and I want to bind them to a single control - StandardListItem
. How to achieve this?
<List id="EmployeeList" headerText="Employees" items="{ path: '/Employee'}">
<items>
<StandardListItem title="{Name}" //from Employee entity
description="{Address/City}" //from Address entity
/>
</items>
</List>
Associated address details available at Employee('emp1')/Address/
TIA.