This question is locked. New answers and comments are not allowed.
Hello.
As I can see, this construction doesn't work:
How can I realize this?
Or
I can bind the data using DataView or DataTable, but It seems there is no full control over the grid in this case.
For example, how to use Templates with binding through the DataView?
Thanks a lot.
As I can see, this construction doesn't work:
Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { for (int i = 0; i < Model.Series.Count; i++) { columns.Bound(o => o.Cells[i].Value); } } ) .Render());How can I realize this?
Or
I can bind the data using DataView or DataTable, but It seems there is no full control over the grid in this case.
For example, how to use Templates with binding through the DataView?
Thanks a lot.