I am using the Kendo Grid with Angular 2 using this http://www.telerik.com/kendo-angular-ui/components/grid/data-binding/ tutorial but I didn't find filtering in the grid. How can I filter my Kendo Grid with Angular 2?
相关问题
- Angular RxJS mergeMap types
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- How to update placeholder text in ng2-smart-table?
- How to instantiate Http service in main.ts manuall
- Angular: ngc or tsc?
相关文章
- angular脚手架在ie9+下兼容问题
- angular 前端项目 build 报错 "Cannot find module 'le
- Angular Material Stepper causes mat-formfield to v
- After upgrade to Angular 9 cannot find variable in
- is there any difference between import { Observabl
- Suppress “Circular dependency detected” suppress w
- How can you get current positional information abo
- Angular material table not showing data
i added to the Fabio Antunes solution
Import compileFilter from '@progress/kendo-data-query';
and change the change() method to the following. This will allow you to filter by multiple columns. Again not exactly what i want, but this will do for now.
Filters are not available in current Beta.0 version of kendo-angular2-grid.
At present, you can use limited API which are listed here
Issue is already reported on telerik's kendo-angular2. Refer this
Comment from Telerik member on this filter issue-
This idea is already posted on newly opened feedback portal Refer this
Update on the Kendo filter - Very similar to Nonik's solution.
Replace "compileFilter" with "filterBy". This is part of the dataquery set of helper functions.
Kendo Data Query
I created this plunker where you can filter your grid by product Name. It's a very basic example:
For your information Kendo Grid has add filter feature in latest version. Please look at their website.
If you stll required some custome filter with kendo grid in angular 2 then look at here or search in google : Angular-2 + Kendo Grid Custom Filter
I was just checking possible ways to enable filter in Kendo Angular 2 Grid and found that Telerik has enabled it. Please check following link.
http://www.telerik.com/kendo-angular-ui/components/grid/filtering/