This question is locked. New answers and comments are not allowed.
Hi There,
I'm using Silver4 with MVVM, no codebehine and directly binding by ViewModel.
How can I add Empty (blank) line in my radcombobox. So user can select that empty value while they don't have that particular information.
I bind like following.
I want to add blank(empty) value line in that binding.
Thanks.
I'm using Silver4 with MVVM, no codebehine and directly binding by ViewModel.
How can I add Empty (blank) line in my radcombobox. So user can select that empty value while they don't have that particular information.
I bind like following.
<telerik:RadComboBox Grid.Column="1" Grid.Row="3" HorizontalAlignment="Left" VerticalAlignment="Top" ItemsSource="{Binding Path=NameSuffixs, Mode=OneWay, NotifyOnValidationError=True,ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" SelectedValue="{Binding Path=Member.NameSuffixId, Mode=TwoWay}" DisplayMemberPath="Description" SelectedValuePath="SuffixId"/>I want to add blank(empty) value line in that binding.
Thanks.