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

[Solved] Filter drop downs empty

1 Answer 41 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.
David
Top achievements
Rank 1
David asked on 11 Feb 2011, 01:05 AM
Hello,

I have this grid working, except I want to use filtering, and when I enable filtering, it kinda of works.

The filter icon is there which when I clicked it brings up the filtering menu, but when I click the drop down (which should include, not equal, equal, greater than, etc, etc.) - so I can't filter anything.

What am I doing wrong ?


<%
    Html.Telerik().Grid(Model)
        .Name("Name")
        .DataBinding(dataBinding => dataBinding
                                        .Ajax()
                                        .Select("AllScreen_AjaxBinding", "Controller")
        )
        .Columns(c =>
                     {
                         c.Bound(q => q.Notimportant).Format("{0}").Title("Notimportant").Filterable(true);
                         c.Bound(q => q.Notimportant1).Format("{0}").Title("Notimportant1");
                         c.Bound(q => q.Notimportant2).Format("{0}").Title("Notimportant2");
                     })
    .Filterable()
    .Pageable(pager => pager.PageSize(20))
    //.Selectable()
    .Sortable()
    .Render();
%>

1 Answer, 1 is accepted

Sort by
0
Rosen
Telerik team
answered on 11 Feb 2011, 09:30 AM
Hi David,

Unfortunately the provided information is not sufficient in order to trace what may have cause such problem. Therefore, it will be appreciated if you can provide a small runnable application in which the described behavior can be observed.

Regards,
Rosen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Grid
Asked by
David
Top achievements
Rank 1
Answers by
Rosen
Telerik team
Share this question
or