The RadComboBox doesn't seem to use the EmptySelectionBoxTemplate when IsEditable = true. Is it supposed to, or is there another template to use?
<telerik:RadComboBox EmptyText="Select an answer"
IsEditable="True"
ItemsSource="{Binding Answers}">
<telerik:RadComboBox.EmptySelectionBoxTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" FontStyle="Italic" Foreground="Red" Opacity="0.4"/>
</DataTemplate>
</telerik:RadComboBox.EmptySelectionBoxTemplate>
</telerik:RadComboBox>
Thanks
<telerik:RadComboBox EmptyText="Select an answer"
IsEditable="True"
ItemsSource="{Binding Answers}">
<telerik:RadComboBox.EmptySelectionBoxTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" FontStyle="Italic" Foreground="Red" Opacity="0.4"/>
</DataTemplate>
</telerik:RadComboBox.EmptySelectionBoxTemplate>
</telerik:RadComboBox>
Thanks