This question is locked. New answers and comments are not allowed.
I have some checkboxes inside of a RadDropDownButton, which sits in an external theme that is applied to the RadScheduler control. Everything is working properly and I'm able to hook up with the LeftClick event when I set a static string value for the CommandProperty, but I'm having trouble getting it to send over the IsChecked value from the checkbox. Any ideas?
| <CheckBox x:Name="CheckFilterDownline" IsChecked="True"> |
| <telerik:CommandManager.InputBindings> |
| <telerik:InputBindingCollection> |
| <telerik:MouseBinding Command="kenexa:AppointmentsViewModel.Filter" |
| CommandParameter="{Binding ElementName=CheckFilterDownline, Path=IsChecked}" Gesture="LeftClick" /> |
| </telerik:InputBindingCollection> |
| </telerik:CommandManager.InputBindings> |
| </CheckBox> |