How to change the cell value of selected cells in WinUI DataGrid (SfDataGrid)?
You can select multiple cells by setting SelectionUnit as Cell or Any and SelectionMode as Multiple or Extended in WinUI DataGrid (SfDataGrid). You can edit and change the value of all the selected cells when editing completes by handling CurrentCellEndEdit event in SfDataGrid.
You have to set a value for all the selected cells in the CurrentCellEndEdit event as shown in the below code snippet. If the current cell property type is not matched with the selected cell type, then you have to convert the value to the associated type of respective cells.
//Event subscription dataGrid.CurrentCellEndEdit += OnCurrentCellEndEdit; //Event customization void OnCurrentCellEndEdit(object sender, CurrentCellEndEditEventArgs args) { //Get DataGrid var dataGrid = sender as SfDataGrid; if (dataGrid != null) { //Get the collection of SelectedCells using GetSelectedCells helper method var selectedcells = dataGrid.GetSelectedCells(); if (selectedcells != null && dataGrid.View != null) { var propertyAccessProvider = dataGrid.View.GetPropertyAccessProvider(); var itemProperties = dataGrid.View.GetItemProperties(); if (propertyAccessProvider != null && itemProperties != null) { if (dataGrid.CurrentItem != null && dataGrid.CurrentColumn != null && dataGrid.CurrentColumn.MappingName != null) { //Get the edited value in CurrentItem property var newValue = propertyAccessProvider.GetValue(dataGrid.CurrentItem, dataGrid.CurrentColumn.MappingName); //Check the selectedcells have 0r not if (selectedcells.Count > 0) { try { selectedcells.ForEach(item => { var cellInfo = item as GridCellInfo; var propInfo = itemProperties.Find(cellInfo.Column.MappingName, true); if (propInfo != null && propInfo.PropertyType == newValue.GetType()) propertyAccessProvider.SetValue(cellInfo.RowData, cellInfo.Column.MappingName, newValue); else if (propInfo != null) { var value = Convert.ChangeType(newValue, propInfo.PropertyType); propertyAccessProvider.SetValue(cellInfo.RowData, cellInfo.Column.MappingName, value); } }); } catch (Exception e) { Debug.WriteLine(e.Message); } } } } } } }
Conclusion
I hope you enjoyed learning about how to change the cell value of selected cells in WinUI DataGrid (SfDataGrid).
You can refer to our WinUI DataGrid’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinUI DataGrid documentation to understand how to present and manipulate data.
For current customers, you can check out our WinUI components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinUI DataGrid and other WinUI components.
If you have any queries or require clarifications, please let us know in the comment section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!