Skip to content

Commit 950e369

Browse files
ES-975464 - Resolve the ReadMe file length issue in this sample repository
1 parent fe91e50 commit 950e369

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# How to create the single group for null and empty value in Windows Forms DataGrid(SfDataGrid)?
1+
# How to create the single group for null and empty value in WinForms DataGrid?
22

3-
## About the sample
3+
This example illustrates how to create the single group for null and empty value in [WinForms DataGrid](https://www.syncfusion.com/winforms-ui-controls/datagrid) (SfDataGrid)
44

5-
This example illustrates how to create the single group for null and empty value in Windows Forms DataGrid(SfDataGrid)
5+
By default, empty and null values are created the separate groups in `SfDataGrid`. You can able to create the single group for empty and null value by using [KeySelector](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.DataGrid.GroupColumnDescription.html#Syncfusion_WinForms_DataGrid_GroupColumnDescription_KeySelector) in [GroupColumnDescriptions](https://help.syncfusion.com/cr/Syncfusion.WinForms.DataGrid.GroupColumnDescription.html).
66

7-
By default, empty and null values are created the separate groups in SfDataGrid. You can able to create the single group for empty and null value by using KeySelector in GroupColumnDescriptions.
8-
9-
```C#
7+
```csharp
108
this.sfDataGrid.GroupColumnDescriptions.Add(new GroupColumnDescription()
119
{
1210
ColumnName = "Country",
@@ -17,11 +15,9 @@ this.sfDataGrid.GroupColumnDescriptions.Add(new GroupColumnDescription()
1715
{
1816
return "";
1917
}
20-
2118
return item;
2219
}
2320
});
2421
```
2522

26-
## Requirements to run the demo
27-
Visual Studio 2015 and above versions
23+
![How to create the single group for null and empty value](https://www.syncfusion.com/uploads/user/kb/wf/wf-54523/wf-54523_img1.png)

0 commit comments

Comments
 (0)