Hi Team,
I have a check edit column in a grid control . I wan to display a warning when the check box column is check and uncheck if the user select "No" option from the confirmation message.
XAML<DataTemplate>
<dxe:CheckEdit x:Name="PART_Editor" >
<dxmvvm:Interaction.Behaviors>
<dxmvvm:EventToCommand EventName="Checked" PassEventArgsToCommand="True" Command="{Binding View.DataContext.CheckedCommand}"></dxmvvm:EventToCommand>
</dxmvvm:Interaction.Behaviors>
</dxe:CheckEdit>
</DataTemplate>
View Model code to display warning:
C#CheckEdit obj = (CheckEdit)((RoutedEventArgs)arg).Source;
MessageBoxResult _dialogBoxResult = DXMessageBox.Show("Are you sure if you want to Check?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question, MessageBoxResult.No);
if (_dialogBoxResult == MessageBoxResult.No)
{
obj.IsChecked = false;
}
Issue in 3rd point:
- User checks the check box and select "No" from warning.
- Check box is not checked
- Event is fired once again when the user clicks the mouse on the grid anywhere or any other column.
Thanks and Regards,
Saurabh