This question is locked. New answers and comments are not allowed.
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 ?
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();%>