Sriks
Sriks

Reputation: 1699

Excel-like filtering in kendo grid is not working

I am looking for excel like filtering in kendo grid. From Telerik demos I could find a demo with this feature like below:

 .Columns(columns =>
 {
     columns.Bound(p => p.ProductName).Filterable(ftb => ftb.Multi(true));                
 });

Where as if I implement ".Filterable(ftb=>ftb.Multi(true))" in my code, I am getting an error like "error CS1660: Cannot convert lambda expression to type 'bool' because it is not a delegate type". Can someone please guide me how to implement this feature.

Upvotes: 2

Views: 806

Answers (1)

Nic
Nic

Reputation: 12846

Filterable(ftb => ftb.Multi(true) should just work.

Note that Excel-like filtering was only released two weeks ago. Did you update Kendo UI to version 2015 Q1?

What's new:

Grid

The Grid adds highly requested functionality, such as:

  • Excel-like filtering, i.e. a multi-select checkboxes option as part of the filtering menu

Upvotes: 2

Related Questions