I'm currently working with Kendo UI Grid in conjunction with Angular, and I am struggling to find a solution for adding text or a placeholder in filter inputs using Typescript.
Within my code, I am utilizing the kendoGridFilterCellTemplate:
<kendo-grid-column field="sender" title="Sender" width="80">
<ng-template kendoGridFilterCellTemplate let-filter let-column="column">
<kendo-grid-string-filter-cell [showOperators]="false" [column]="column" [filter]="filter">
</kendo-grid-string-filter-cell>
</ng-template>
</kendo-grid-column>
By default, Kendo UI Grid filter inputs do not display any placeholder text, and I would like to include something like this:
<kendo-grid-string-filter-cell [showOperators]="false" [column]="column" [filter]="filter" placeholder="Search...">
</kendo-grid-string-filter-cell>
Kendo Grid does not seem to recognize the placeholder HTML element. Is there a way to achieve this functionality without relying on jQuery?