This question is locked. New answers and comments are not allowed.
Guys,
I have a RadListPicker on my form bound to an ObservableCollection.
The listis used in a master-detail solution. The RadListPicker is the master and a ListView contains the details. The RadListPicker SelectionChanged event is used to filter the contents of the details listbox. I should like to be able to remove all filtering by adding an "All" option to the top of the list.
Any thoughts?
Jason.
I have a RadListPicker on my form bound to an ObservableCollection.
<telerikInput:RadListPicker x:Name="SessionTypesLB" PopupHeader="Select Session Type" InlineModeThreshold="2" ItemsSource="{Binding SessionTypes}" Grid.Row="1" SelectionChanged="SessionTypesLB_SelectionChanged" > <telerikInput:RadListPicker.ItemTemplate> <DataTemplate> <StackPanel > <TextBlock Text="{Binding SessionName}" /> </StackPanel> </DataTemplate> </telerikInput:RadListPicker.ItemTemplate> <telerikInput:RadListPicker.PopupItemTemplate> <DataTemplate> <TextBlock Text="{Binding SessionName}" /> </DataTemplate> </telerikInput:RadListPicker.PopupItemTemplate></telerikInput:RadListPicker>The listis used in a master-detail solution. The RadListPicker is the master and a ListView contains the details. The RadListPicker SelectionChanged event is used to filter the contents of the details listbox. I should like to be able to remove all filtering by adding an "All" option to the top of the list.
Any thoughts?
Jason.