This is a migrated thread and some comments may be shown as answers.

[Solved] Grid Filtering Not Showing Filter Options in Dropdown

1 Answer 179 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
JFoulk
Top achievements
Rank 1
JFoulk asked on 15 Jun 2012, 08:44 PM
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.

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

1 Answer, 1 is accepted

Sort by
0
Walid
Top achievements
Rank 1
answered on 17 Jul 2012, 08:34 AM
I am having the same problem could you please help ?
Tags
Grid
Asked by
JFoulk
Top achievements
Rank 1
Answers by
Walid
Top achievements
Rank 1
Share this question
or