假设我有与 XSOData 中的Employee
实体关联的Address
实体,我想将它们绑定到单个控件 - StandardListItem
。如何做到这一点?
<List id="EmployeeList" headerText="Employees" items="{ path: '/Employee'}">
<items>
<StandardListItem title="{Name}" //from Employee entity
description="{Address/City}" //from Address entity
/>
</items>
</List>
相关地址详情可在Employee('emp1')/Address/
TIA。