Articles in this section
Category / Section

How to delete the cell value by using the delete key in display mode?

1 min read

In the SfDataGrid, you can delete the selected row by pressing the Delete key when the SfDataGrid.AllowDeleting is set to true. Likewise, you can delete the selected cell value without entering into the edit mode when the delete key is pressed by deriving a new class from the GridSelectionController. In the customized GridSelectionController, you need to override the ProcessKeyDown virtual method that handles all the key navigations. With the help of the PropertyDescriptorExtensions.SetValue helper method, you can set the cell value as null. Before setting the value, you need to check whether the selected cell value is null as follows.

C#

public class GridSelectionControllerExt : GridSelectionController
{        
    public GridSelectionControllerExt(SfDataGrid grid)
        : base(grid)
    {            
    }
    protected override void ProcessKeyDown(KeyEventArgs args)
    {
        //Customizes the Delete key operation.
        if (args.Key == Key.Delete)
        {
            //Gets the cell value of current column.
            var record = this.DataGrid.View.Records[this.DataGrid.SelectedIndex].Data;                               
            var cellVal = this.DataGrid.View.GetPropertyAccessProvider().GetValue(record, this.DataGrid.Columns[this.CurrentCellManager.CurrentCell.ColumnIndex].MappingName);
            //Returns the cell value when the current column's cell is not set to null.
            if (cellVal != null)
            {
                var columnName = this.DataGrid.Columns[this.CurrentCellManager.CurrentCell.ColumnIndex].MappingName;               PropertyDescriptorExtensions.SetValue(this.DataGrid.View.GetItemProperties(), record, null, columnName);
            }
        }
        else
            base.ProcessKeyDown(args);
    }       
}

 

Refer to the following code example to assign the customized GridSelectionControllerExt to the SfDataGrid.SelectionController to override the existing SelectionController.

C#

public MainWindow()
{
    InitializeComponent();
    // Assigns the customized GridSelectionControllerExt.
    this.grid.SelectionController = new GridSelectionControllerExt(grid);
}

 

Sample Links:

WPF

WinRT

WP

UWP

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied