I have combobox with values 0, 1, 2. When user expand the combobox to select the value, I want to show Text of the value as 0 - Bad, 1 - Average, 2 - Good.
But when user select the value, I want to display the value only.
How can I do this ? Here is my Code
<telerik:RadComboBox ItemsSource="{Binding Flags}"
SelectedValue="{Binding FlagId,Mode=TwoWay}"
SelectedValuePath="Id"
DisplayMemberPath="Id">
</telerik:RadComboBox>