New to Kendo UI for Angular? Start a free 30-day trial
FilterDirective
Implements an event handler for the filterChange
event of a DropDowns component
which performs simple data filtering.
ts
@Component({
selector: 'my-app',
template: `
<kendo-autocomplete
[data]="data"
kendoDropDownFilter
placeholder="e.g. Andorra"
>
</kendo-autocomplete>
`
})
class AppComponent {
public data: Array<string> = ["Albania", "Andorra", "Armenia", "Austria", "Azerbaijan"];
}
Currently, the built-in filtering does not work with grouped data.
Selector
[kendoDropDownFilter]
Inputs
Name | Type | Default | Description |
---|---|---|---|
data |
|
The initial data that will be used as a source array for the filtering operations. | |
kendoDropDownFilter |
|
The configuration object which sets the behavior of the |