“How to Bind to Arrays of Primitive Data in DropDownList using Angular 2”?
The “Kendo UI Angular 2 Drop-Down-List” is a form component and used binds the data list and chooses a single predefined value as per you from a drop-down-list and the data will be primitive types such as strings or numbers and so on..
The DropDownList is used to enables to bind primitive data types like strings, numbers and data inside objects and it also supported to binding the asynchronous sources.
@Component({ selector: 'my-app', template: ` <kendo-dropdownlist [data]="listItems"></kendo-dropdownlist> ` }) class AppComponent { public listItems: Array<string> = ["Item 1", "Item 2", "Item 3"]; }
References,