I have am successfully grouping my datasource's data server-side for a mobile listview, however, I cannot display it to the screen. The data in _pristine
data correctly shows my data in the following structure:
results: Array[12] // 12 groups total
0 = Array[5] // first group
0 = Object // groupID lives here
total: 14
Here is the relevant section of my datasource definition:
schema: {
groups: "[d.results]", // tried function(response) {return [response.d.results];}
data: "d.results",
total: "d.total",
},
serverGrouping: true,
group: "groupID",
.
.
.
My datasource works fine with client side grouping..