Hi Support,
After updating from v2015.3.1111 to v2016.1.226
the ComboBox directive is not working like the prevous version.
the problem i have is the combobox is set to a value with the ng-model settings.
the Text value is displayed in the combobox but the value is not set in the ng-model it changes it to null
the DataSource is a array like :
[
{
Text: 'some text',
Value: 0
},
{
Text: 'some other value'
Value: 1
}
]
the directive is cofigured :
<select kendo-combo-box
ng-model="legendItem.ScaleMin"
k-data-text-field="'Text'"
k-data-value-field="'Value'"
k-auto-bind="false"
k-data-source="legendItem.ZoomLevels">
</select>