I have been trying on and off for weeks to get the Groups feature to show in AlphaControls 9.20. I can do it with a regular Delphi TListView but not with a TsListView. Has anyone got this working or can confirm that it doesn't work?
This is a snippet of code that should work but does not:
sListView1.Columns.Add.Caption := 'Test';
lg := sListView1.Groups.Add;
lg.Header := 'one';
lg.GroupId := 0;
li := sListView1.Items.Add;
li.GroupID := 0;
li.Caption := 'my item';
The sListView has GroupView = True and ViewStyle = vsReport. This is under Delphi XE7.
Any help would be much appreciated, thanks, Rob C