Declined
Last Updated: 11 Jul 2023 15:03 by ADMIN
Jerry
Created on: 26 Feb 2020 16:25
Category: Grid
Type: Feature Request
1
Add 'extra' filter option globally for all columns in a grid

Can you add "extra" field to FilterableSettings to allow the user to set extra globally for all columns in a grid? 

https://www.telerik.com/kendo-angular-ui/components/grid/api/FilterableSettings/

Currently, if I want to set extra to false for a column, I need to do something like this: 

<kendo-grid-column field="ProductName" title="Product Name">
   <ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
     <kendo-grid-string-filter-menu [extra]="false" [column]="column" [filter]="filter" [filterService]="filterService">
     </kendo-grid-string-filter-menu>
   </ng-template>
</kendo-grid-column>

But it would be simpler if we can do filterable:{extra:false} just like Kendo UI for jQuery. https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/filterable.extra

2 comments
ADMIN
Martin
Posted on: 11 Jul 2023 15:03

Hi Jerry,

We are declining this request due to low interest and demand. If it turns out to be popular in the future, we will reconsider the status. 

Regards,
Martin
Progress Telerik

As of R2 2023, the default icon type will be SVG instead of Font. See this blogpost for more information.
Jerry
Posted on: 26 Feb 2020 23:06

it would be great help if you can do 

<kendo-grid-column field="UnitPrice" filter="numeric" [filterable]="{extra:false}">
   </kendo-grid-column>