cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Bind table rows using $expand

xyla
Participant
0 Likes
3,770

Hi All,

A have a table, and in my controller I'm binding the rows of the table this way:


searchResultTable.bindRows("/OrderHeaderSet", null,

  null, filterArray, {"expand":"StatusSet"});

Everithing works fine (i get the filtered dataset), except the "StatusSet" node is not expanded, and so it has no data inside.

How can I tell the "bindRows" method to expand this entity? (Obviously my approach doesn't work)

Best Regards,

Szilamér

View Entire Topic
former_member182372
Active Contributor
0 Likes

searchResultTable.bindRows(

{

  path : "/OrderHeaderSet",

  filters : filterArray,

  parameters : { "expand":"StatusSet"}

} );