The “Kendo UI Angular 2 DropDownList” is a form component and used binds the data list and chooses a single predefined value as per you from a dropdown list and the data will be primitive types such as strings or numbers and so on..
Stayed Informed – Open as PLUNKER Demo
Best Configuration and Data Binding Types
Example: - Source code for Basic Usage as,
@Component({ selector: 'my-app', template: `<div class="example-wrapper">Select Item <kendo-dropdownlist [data]="listItems"> </kendo-dropdownlist></div>` }) class AppComponent { public listItems: Array<string> = ["Item-1", "Item-2", "Item-3", "Item-4", "Item-5"]; }
References,