///
///
import {Component, View, bootstrap, FORM_DIRECTIVES, ControlGroup, Control } from 'angular2/angular2';
import {KendoValueAccessor} from 'kendo/angular2';
@Component({
selector: 'my-app'
})
@View({
template: `
`,
directives: [FORM_DIRECTIVES, KendoValueAccessor]
})
class MyAppComponent {
cap: { color: Number } = { color: 1 };
colors = [
{ text: "Black", value: 1 },
{ text: "Orange", value: 2 },
{ text: "Grey", value: 3 }
];
dropDownListOptions: {
dataSource: Array