Hi Jose,
Thanks for your patience.
We would like to let you know that by default, the group caption text will be displayed based on MappingName of combo box column. This can be changed to display the DisplayMember by using the GroupMode property of column as shown in the below given code example.
Code example :
sfDataGrid1.Columns.Add(new GridComboBoxColumn()
{
MappingName = "ShipCityID",
HeaderText = "Ship City",
DisplayMember = "ShipCityName",
ValueMember = "ShipCityID",
SortMode = Syncfusion.Data.DataReflectionMode.Display,
DataSource = new OrderInfoCollection().CityList,
GroupMode = Syncfusion.Data.DataReflectionMode.Display
}); |
Please let us know if you require any other assistance from us.
Regards,
Mohanram A.