Hi,
how can I do client-side grouping for a mobile listview with Odata.
I have:
ds = new kendo.data.DataSource({
type: "odata",
transport: {
read: {
url: "Servide.svc/kendotest"l,
dataType: "jsonp"
},
...
});
And I can populate the listview with:
function mobileListViewTemplatesInit() {
$("#custom-listview").kendoMobileListView({
dataSource: ds,
....
});
But how do I group by one of the fields in the datasource?
Thanks in advance
Per
how can I do client-side grouping for a mobile listview with Odata.
I have:
ds = new kendo.data.DataSource({
type: "odata",
transport: {
read: {
url: "Servide.svc/kendotest"l,
dataType: "jsonp"
},
...
});
And I can populate the listview with:
function mobileListViewTemplatesInit() {
$("#custom-listview").kendoMobileListView({
dataSource: ds,
....
});
But how do I group by one of the fields in the datasource?
Thanks in advance
Per