This question is locked. New answers and comments are not allowed.
I'm trying to add a master detail grid to my page, but the detail grid renders outside of it's master grid.
I have a master grid with 5 rows, coherently the page shows 6 grids, 5 detail grid on top of the page and the master grid right bellow.
i would appreciate any help.
thanks,
I have a master grid with 5 rows, coherently the page shows 6 grids, 5 detail grid on top of the page and the master grid right bellow.
<%= Html.Telerik().Grid(Model.Episodes) .Name("Episodes") .Columns(columns => { columns.Bound(c => c.EpisodeNumber).Width(10); columns.Bound(c => c.Title); columns.Bound(c => c.AirDate).Format("{0:d}").Width(150); }) .DetailView(fView => fView.Template(f => Html.Telerik().Grid(f.Files).Columns(c=> c.Bound(o=>o.Path)).Name("Files_" + f.EpisodeId).Render())) .Groupable(grouping => grouping.Groups(groups => groups.Add(c => c.SeasonNumber))) .Sortable(rows=>rows .OrderBy(epSort => epSort.Add(c => c.EpisodeNumber))) %>i would appreciate any help.
thanks,