Skip to content

DevExpress-Examples/winforms-grid-enable-editing-in-group-row-to-change-cell-values

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms Data Grid - Display editors in a group row to edit cell values in the group

This example demonstrates how to display column editors in group rows. The user can use the editor to specify the same value for all cells in a column in a group.

You can also enable the GroupEditProvider.ShowGroupEditorOnMouseHover option to automatically invoke the group editor on mouse hover.

provider = new GroupEditProvider(gridView1);
provider.ShowGroupEditorOnMouseHover = true;
provider.SingleClick = true;
provider.EnableGroupEditing();

Files to Review