This question is locked. New answers and comments are not allowed.
I'm databinding a grid using a datatable. When I use .Filterable(), the filter icon works, but there are no options in the dropdown list for "how to filter" the data. e.g. I don't see "Contains", or "Equal To", etc.
I have not made any customizations to the .js files. This project was new and created from the Telerik templates yesterday.
Here's a screenshot of the filter popup:
Filter Popup Pic
I have not made any customizations to the .js files. This project was new and created from the Telerik templates yesterday.
Html.Telerik() .Grid((System.Data.DataTable)ViewData["Users"]) .DataKeys(datakeys => datakeys.Add("User_id")) .Name("UsersGrid") .Columns(columns => { columns.Bound("User_id").Title("User ID").Width(100); columns.Bound("Username"); columns.Bound("Name").Width(200); columns.Bound("Email_Address").Title("Email Address"); }) .Pageable(pageable => pageable.Enabled(ViewBag.PageList)) .Filterable()Here's a screenshot of the filter popup:
Filter Popup Pic