I have a simple combobox where the value is not populated on load:
<TelerikComboBox Value="@SelectedValue"
Data="@SourceColumns"
AllowCustom="true"
Width="100%" />
@SelecteValue is a string
@SourceColumns is an ObservableCollection<String>
If I switch it to a drop down list, the item is selected, however I need to be able to have custom values.
This seems pretty straight forward, and I am thinking I am missing something minor?