In the following snippet, for a single column, I am allowing only 1 filter criteria by setting [extra] to false. My goal is to restring the filter to only allow 1 criteria. Is it possible apply this for all columns in the grid without performing this action for each column?
<kendo-grid-column field="myDate" title="Title">
<ng-template kendoGridFilterMenuTemplate
let-filter let-column="column" let-filterService="filterService">
<kendo-grid-date-filter-menu
[column]="column" [filter]="filter" [filterService]="filterService"
[extra]="false"
operator="eq"
>
</kendo-grid-date-filter-menu>
</ng-template>
</kendo-grid-column>