Trying to create a simple expand for details grid and the first column is not showing (the expand icon)
This is what I have on the view:
Chrome and IE show no JS errors. I have two other grids (no details or heirarchy) and they look fine. Not sure what I am doing wrong here.
This is what I have on the view:
<script id="upc_detail" type="text/x-kendo-template">
@(Html.Kendo().Grid<PeriodicCheckWithLineage>()
.Name("upcgrid_#=Test_ID#")
.Columns(columns =>
{
columns.Bound(o => o.Date_Time).Title("Date/Time");
columns.Bound(o => o.IsND);
columns.Bound(o => o.IsSigShift);
columns.Bound(o => o.IsSigBias);
})
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("PeriodicDetail", "Review", new { TestID = "#=Test_ID#" }))
)
.ToClientTemplate())
</script>
@(Html.Kendo().Grid<TestLineage>(upc_test) .Name("upcgrid") .Columns(columns => { columns.Bound(e => e.Lab_Name); columns.Bound(e => e.Instrument_Name); columns.Bound(e => e.Analyte_Name); columns.Bound(e => e.Test_Name); }) .ClientDetailTemplateId("upc_detail") )Chrome and IE show no JS errors. I have two other grids (no details or heirarchy) and they look fine. Not sure what I am doing wrong here.