How to bind oData service to a SAPUI5 table when it uses an OData $expand parameter
<Table id="contactPickerTable" items="{path: 'modelPersons>/ContactSet', filters : [{path : 'Customer',operator : 'EQ',value1:'2035235403'}] parameters : {expand:'Address'}}" > ..... <ObjectIdentifier title="{modelPersons>Title}" text="{modelPersons>PersonId}" />
I know the above example of list binding data to a table works. But if there is $expand in my service then how can I display properties of the returned collection in ObjectIdentifier? I mean what will be context path?