This question is locked. New answers and comments are not allowed.
Hi,
I have a screen which contains some textboxes, a RadDateTimePicker and a RadSplitButton.
If I modify the RadDateTimePicker value by typing and then I click on RadSplitButton, the selected value is not updated. If instead of clicking on RadSplitButton, I click on another control the update is working fine.
From what I understood the binding is updated when the focus is lost and from what I see the RadSplitButton doesn't receive the focus after user click.
The value is used in mycustomaction from the code below.
Do you know how I can make the SelectedValue to update? or do you know any workaround for this?
Thank you
I have a screen which contains some textboxes, a RadDateTimePicker and a RadSplitButton.
If I modify the RadDateTimePicker value by typing and then I click on RadSplitButton, the selected value is not updated. If instead of clicking on RadSplitButton, I click on another control the update is working fine.
From what I understood the binding is updated when the focus is lost and from what I see the RadSplitButton doesn't receive the focus after user click.
The value is used in mycustomaction from the code below.
<telerik:RadSplitButton Margin="2" MinWidth="84" Height="24" IsTabStop="True" Content="{Binding Release, Source={StaticResource Localization}}" IsEnabled="{Binding IsEnabled, ElementName=SaveButton}"> <i:Interaction.Triggers> <i:EventTrigger EventName="Click"> <actions:mycustomaction /> </i:EventTrigger> </i:Interaction.Triggers>Do you know how I can make the SelectedValue to update? or do you know any workaround for this?
Thank you