FilterDirective
Directive
Implements an event handler for the filterChange event of a DropDowns component
which performs simple data filtering.
Currently, the built-in filtering does not work with grouped data.
Definition
Package:@progress/kendo-angular-dropdowns
Selector:[kendoDropDownFilter]
Syntax:
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"];
}
Inputs
data
any[]
The initial data that will be used as a source array for the filtering operations.
The configuration object which sets the behavior of the kendoDropDownFilter directive.
If no DropDownFilterSettings object is provided to this input, the directive will use the default interface settings.