Hi Salvatore
Yes, it is possible to do what you are seeking by using Templates. Here is a modified version of the Skins sample that demonstrates this.
Right click on the GridControl in the Design mode and choose Edit Template -> Item Templates and edit the GroupCaptionTemplate by adding a checkbox and a label. Right click again and choose End Template Editing. The text for the label is set using the
GetLabelText method shown below:
protected string GetLabelText(GridCell container)
{
GridCaptionRow gcrow = (GridCaptionRow)container.RowElement;
Group group = gcrow.ParentGroup;
return GridEngine.GetGroupCaptionText(group);
}
Here is the modified version of the
sample (You can unzip this to the Grid.Grouping.Web\samples\1.1\LookAndFeel\Skins\cs folder).
Kindly update incident 20422 if you have any further questions.
Regards
Arun