i notice that my multi-select filter on my grid does not have a Select all checkbox as I have seen in the multi-filter checkbox demo -
I am using the asp.mvc version visual studio version 15.8.1 -
To see this, create new telerik mvc core project using the grid template
which has this grid
<div class="row">
<div class="col-xs-18 col-md-12">
@(Html.Kendo().Grid<TelerikAspNetCoreApp1.Models.OrderViewModel>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.OrderID).Filterable(false);
columns.Bound(p => p.Freight);
columns.Bound(p => p.OrderDate).Format("{0:MM/dd/yyyy}");
columns.Bound(p => p.ShipName);
columns.Bound(p => p.ShipCity);
})
.Pageable()
.Sortable()
.Scrollable()
.Filterable()
.HtmlAttributes(new { style = "height:550px;" })
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("Orders_Read", "Grid"))
)
)
</div>
</div>
add this to the freight column
Filterable(ftb => ftb.Multi(true))
the resulting filter has no select all checkbox as shown in this demo
https://demos.telerik.com/aspnet-mvc/grid/filter-multi-checkboxes
can you look into this and see what is going on
thanks
Jim