This question is locked. New answers and comments are not allowed.
Ok I have a RadComboBox defined like below:
The item source bind correctly and shows a row for each item except the text is not showing. I don't have an Item Template defined and do not want to use one. When you do select an item it places the VisitReasonType_Desc to the text of the combobox. Why would it be showing blank rows on the items?
I have several other combos on this form that work great.
<telerik:RadComboBox Margin="105,78,252,0" VerticalAlignment="Top" DisplayMemberPath="VisitReasonType_Desc" TextSearchMode="Contains" IsFilteringEnabled="True" IsEditable="True" CanAutocompleteSelectItems="True" CanKeyboardNavigationSelectItems="True" ItemsSource="{Binding VisitReasons, Mode=TwoWay}" SelectedItem="{Binding SelectedVisitReasonType, Mode=TwoWay}" />The item source bind correctly and shows a row for each item except the text is not showing. I don't have an Item Template defined and do not want to use one. When you do select an item it places the VisitReasonType_Desc to the text of the combobox. Why would it be showing blank rows on the items?
I have several other combos on this form that work great.