javascript - Binding the Json response to Kendo grid -


i bit confuse how bind response in kendo grid.

getting response form service below

enter image description here

i need show response in grid shown below

enter image description here

i using angular js, mvc , kendo grids.

which best modify response data in grid. in mvc or angular js.

thanks advance

if prefer letting grid's data source handle data grouping , aggregation use grid's data source. code below razor syntax, however, there direct equivalent in kendo ui js.

datasource(datasource => datasource     .server()     .aggregates(aggregates =>     {         aggregates.add(p => p.amount).sum();     })     .group(groups => groups.add(p => p.customername) ) 

Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -