javascript - Binding the Json response to Kendo grid -
i bit confuse how bind response in kendo grid.
getting response form service below
i need show response in grid shown below
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
Post a Comment