Hi. I have this grid
@(Html.Kendo().Grid<
Something
>
()
.Name("Something")
.Selectable(builder => builder.Type(GridSelectionType.Row).Mode(GridSelectionMode.Multiple).Enabled(false) )
.ClientRowTemplate(Html.Partial("Partials/Something").ToHtmlString())
.TableHtmlAttributes(new { @class = "table table-stripped" })
.Scrollable(scrollable => scrollable.Height(100).Enabled(true))
.Columns(columns =>
{
columns.Bound(h => h.Something).Title("Partner type").Width(120);
columns.Bound(h => h.Something).Title("Date").Width(120);
columns.Bound(h => h.Something).Title("Name");
}))
that has multiple row selection disabled.
This grid is populated when I select another grid. After that, I want to have multiple row selection enabled. I did set the grid.options.selectable to true, but it doesn't work.
How can I solve this?