I use kendo grids and they work great for CRUD operations. Now I wanted to add filtering by adding the .Filterable() parameter to the grid specification. Here is the code:
<div id="datagrid"> @(Html.Kendo().Grid<SustIMS.Models.ConcessionModel>() .Name("datagrid_Concessions") .Columns(columns => { columns.Bound(c => c.Code).Title("Code"); columns.Bound(c => c.Description).Title("Description"); columns.Bound(c => c.TrafficOpeningDate).Title("Traffic Opening Date"); columns.Bound(c => c.CreationDate).Title("Creation Date"); }) .HtmlAttributes(new { style = "height: 534px;" }) .Filterable()
The grid is displayed fine, and now small filter icons are displayed on the column headings of the grid:

But when I click one, the popup opens for half a second and an error occurs. I am using Visual Studio 2010 and the debugger shows a popup with javascript runtime error: object doesn't support property or method 'addBack' .
In addition, he opens the kendo.all.min.js file with highlighting in the line of code where the addBack method is addBack .
NOTE. I tested Chrome and Firefox and it works great. The problem exists only when using Internet Explorer (version 11).
Any help?
source share