Это подотчет(Kendo hierarchi). При открытии страницы сразу открывается 1 пункт. Как сделать что бы он не открывался?
<script id="template" type="text/kendo-tmpl">
@(Html.Kendo().Grid(Model.Tables["ShopsStock2"])
.Name("grid_#=Cyl_Item_ID#") // template expression, to be evaluated in the master context
.HtmlAttributes(new { style = "height: 300px;font-size: 12px;" })
.Columns(columns =>
{
columns.Bound("11").Width(30).Title("11");
columns.Bound("22").Width(30).Title("22").ClientTemplate("\\#= Quantity \\#");
})
.DataSource(dataSource => dataSource
.Ajax()
//.PageSize()
.Read(read => read.Action("ShopStocks_Subrep_Ajax", "Stocks", new { Cyl_Item_ID = "#=Cyl_Item_ID#" }))
)
//.Pageable()
.Scrollable()
//.Sortable()
.ToClientTemplate()
)
</script>
function dataBound() {
this.expandRow(this.tbody.find("tr.k-master-row").first());
}