Ticket T710994
Visible to All Users

Checked event to command for check edit column

created 6 years ago (modified 6 years ago)

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:

  1. User checks the check box and select "No" from warning.
  2. Check box is not checked
  3. Event is fired once again when the user clicks the mouse on the grid anywhere or any other column.

Thanks and Regards,
Saurabh

Answers approved by DevExpress Support

created 6 years ago

Hello Saurabh,

Our GridControl utilizes the virtualization mechanism to improve its performance. Virtualization reuses row, cell, and column visual elements, and changes their properties and data context. In particular, it reuses cell editors and changes their values during scrolling. Thus, it is not recommended to subscribe to the editor's event. Instead, you can use the corresponding grid's/view's events.

For example, in you scenario, it is necessary to handle the CellValueChanging event and invoke the HideEditor method to preserve the current value as described in the GridControl - Tagging/Checkedit in Grid thread. Attached is a sample project demonstrating this approach in action. Please take a moment to review it.

See also:
How to avoid problems with the DXGrid virtualization mechanism

Thanks,
Michael

    Comments (2)
    SN SN
    saurabh nanda 2 6 years ago

      Thanks Michael, can you please convert the sample to MVVM complaint with binding event to command?

      DevExpress Support Team 6 years ago

        To adapt this solution for the MVVM pattern, I suggest that you create a custom behavior (as described in the How to: Create a Custom Behavior topic) and handle all required events at its level. This way, you will avoid referencing visual elements in your view model.

        Thanks,
        Michael

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.