我正在将Kendo UI Grid与Angular一起使用,我找不到用Typescript在过滤器输入中放置一些文本/占位符的方法。
在我的代码中,我使用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>
默认情况下,Kendo UI Grid中的过滤器输入没有输入/占位符,我想输入以下内容:
<kendo-grid-string-filter-cell [showOperators]="false" [column]="column" [filter]="filter" placeholder="Search...">
</kendo-grid-string-filter-cell>
Kendo Grid无法识别占位符 html元素。如何在不使用jQuery的情况下实现此目标?