Hi,
I have a combobox (with checkboxes inside it) that is inside a RadToolbar. I have an issue where the combobox always closes when a checkbox is checked. I've noticed that when the combobox is not inside a Toolbar then it will stay open to allow me to select multiple checkboxes. I would like to have the CB inside the toolbar so I'm looking for a fix. Is this a bug? Is there a fix?
Thanks
I have a combobox (with checkboxes inside it) that is inside a RadToolbar. I have an issue where the combobox always closes when a checkbox is checked. I've noticed that when the combobox is not inside a Toolbar then it will stay open to allow me to select multiple checkboxes. I would like to have the CB inside the toolbar so I'm looking for a fix. Is this a bug? Is there a fix?
<telerik:RadToolBar> <telerik:RadComboBox Name="rcbProjectTypes" Width="120" Margin="3,1,0,1" ItemsSource="{Binding Path=RequestTypesSelection}" SelectionChanged="rcbShouldNotChange_SelectionChanged"> <telerik:RadComboBox.ItemTemplate> <DataTemplate> <CheckBox Content="{Binding Path=Content}" Tag="{Binding Path=Id}" IsChecked="{Binding Path=IsChecked, Mode=TwoWay}" Checked="RequestTypesCheckBox_Checked" Unchecked="RequestTypesCheckBox_Checked"/> </DataTemplate> </telerik:RadComboBox.ItemTemplate> </telerik:RadComboBox></telerik:RadToolBar>Thanks