Reputation: 1699
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
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?
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