This question is locked. New answers and comments are not allowed.
Hello Telerik
I have a problem I use telerikInput:RadAutoCompleteBox and I bind a list to suggestion source and I dont have SelectedItem property.
I need not only the text from it. I need to bind the whole selected item into a viewmodel to save
I
I have a problem I use telerikInput:RadAutoCompleteBox and I bind a list to suggestion source and I dont have SelectedItem property.
I need not only the text from it. I need to bind the whole selected item into a viewmodel to save
<telerikInput:RadAutoCompleteBox<br> ActionButtonVisibility="Visible"<br> EmptyFilterBehavior="ShowAll"<br> Margin="-12,6,12,0"<br> x:Name="RadAutoComplete"<br> AutoCompleteMode="Contains"<br> SuggestionsSource="{Binding AllFood}"<br> FilterKeyPath="Name"<br> AutoCompletePopupDisplayMode="AboveTextBox"<br> SelectedText="{Binding SelectedFood_FoodGroup, Mode=TwoWay}"><br> <telerikInput:RadAutoCompleteBox.SuggestionItemTemplate><br> <DataTemplate><br> <StackPanel><br> <TextBlock Text="{Binding Name}"/><br> </StackPanel><br> </DataTemplate><br> </telerikInput:RadAutoCompleteBox.SuggestionItemTemplate><br> </telerikInput:RadAutoCompleteBox>I