Hi,
I read about the formatPlaceholder option in the docs, but I can't find any options, whether we can set this value to null or an empty string. Currently my column filter is configured like this:
<kendo-grid-column field="year" title="Év" format="yyyy">
<ng-template kendoGridFilterCellTemplate let-filter let-column="column">
<kendo-grid-date-filter-cell
[showOperators]="false"
[column]="column"
[filter]="filter"
activeView="decade"
bottomView="decade"
format="yyyy"
[formatPlaceholder]="{
year: '',
month: '',
day: '',
hour: '',
minute: '',
second: ''
}"
>
</kendo-grid-date-filter-cell>
</ng-template>
</kendo-grid-column>
As you see, I tried to set the placeholder to nothing, but no success, I get this:
How can I get rid of the 'year' text?
Thanks.