Below is my radcombobox with checkbox multi select dropdown.
<telerik:RadComboBox x:Name="StatusFilter" Width="150" Margin="10,1,10,2" HorizontalAlignment="Stretch" HorizontalContentAlignment="Left" CanAutocompleteSelectItems="True" EmptySelectionBoxTemplate="{StaticResource EmptyTemplate}" EmptyText="Status" IsEditable="False" ItemsSource="{Binding StatusesComboBox}" SelectedValue="{Binding CourseStatusId, Mode=TwoWay}" SelectedValuePath="Id"> <telerik:RadComboBox.ItemTemplate> <DataTemplate> <CheckBox Height="16" Margin="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Content="{Binding Value.DisplayName}" IsChecked="{Binding IsSelected}" /> </DataTemplate> </telerik:RadComboBox.ItemTemplate> <telerik:RadComboBox.SelectionBoxTemplate> <DataTemplate> <TextBlock Text="{Binding ItemsSource.SelectedItemsText, ElementName=StatusFilter, Mode=OneWay}" /> </DataTemplate> </telerik:RadComboBox.SelectionBoxTemplate> </telerik:RadComboBox>
The issue is the empty text doesn't show. It's just blank. Is there anyway to get this to show? I suspect it has to do with the custom data templates. Can anyone help me with this?
Thanks.
