I am using Grid and via BindTo(...) it displays a list of objects from my PageModel; this works fine.
@(Html.Kendo().Grid<ProjectImportFormat>()
.Name(
"grdProjectImports"
)
.BindTo(Model.ProjectResults)
.AutoBind(
true
)
...
)
What I like to do is display the count of all records in the footer of the grid. Normally aggregates are declared inside the datasource, but there is only a list, no datasource. How can this be accomplished?
Regards
Heiko