I am trying to use hierarchy with the data that is in the model. However, when the grid loads, the first column is not the expand/collapse, it is the first data bound column and all other columns are shifted left. If I exclude the client template, it works fine, but as soon as I add the template call, it breaks.
@(Html.Kendo().Grid<
SHDIncident
>(Model.SHDActive)
.Name("shdActive")
.Columns(columns =>
{
columns.Bound(e => e.SHDEntryId);
columns.Bound(e => e.AffectedWorkload);
columns.Bound(e => e.Severity);
columns.Bound(e => e.Status);
columns.Bound(e => e.AffectedDataCenters);
columns.Bound(e => e.StartTime);
columns.Bound(e => e.LastUpdatedTime);
})
.ClientDetailTemplateId("shddetailTemplate")
)