Hello,
When i try to serialize a grid state object with aggregate operation using the `toDataSourceRequest ` or `toDataSourceRequestString` API's they simply get ignore/not mentioned in the output. ( i'm trying to achieve server side aggregation )
state object example :
{
skip : 0,
take : 10,
group : [
{
aggregates: [ { field: 'myField', aggregate: 'count' } ],
field: 'myField'
}
]
}
toDataSourceRequest output : {page: 1, pageSize: 10, group: "myField-asc"}
toDataSourceRequestString output : page=1&pageSize=10&group=myField-asc
Thanks in advance.