Adding or inserting an item to a TListView always adds it to the end when GroupView is Active - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T10:08:23Zhttp://stackoverflow.com/feeds/question/1076861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi1Adding or inserting an item to a TListView always adds it to the end when GroupView is ActivePavan2009-07-02T21:58:19Z2009-07-05T21:34:17Z
<p>Hi,</p>
<p>In Delphi 2009 :</p>
<p>When TListView's GroupView is Active, adding or inserting an item to a TListView always adds it to the end of the list, regardless of Index specified as param. When GroupView is set to false it adds it at the specified index. But when it is true, this behavior is not seen. </p>
<pre><code>ListView2.Items.Insert(1)
</code></pre>
<p>The above should insert item at the sepecified index "1", but always adds it to the end of the list. What am I doing wrong here?</p>
<pre><code>object ListView2: TListView
Left = 32
Top = 40
Width = 161
Height = 233
BorderWidth = 5
Columns = <
item
AutoSize = True
end>
DoubleBuffered = False
FlatScrollBars = True
Groups = <
item
Header = 'test'
Footer = 'aksdlkajsd;flkj'
GroupID = 0
State = [lgsNormal]
HeaderAlign = taLeftJustify
FooterAlign = taLeftJustify
Subtitle = 'adgasdfasdf'
TopDescription = 'test desc'
BottomDescription = 'adsfasdfasdf'
TitleImage = 0
ExtendedImage = 0
end
item
Header = 'test1'
GroupID = 1
State = [lgsNormal]
HeaderAlign = taLeftJustify
FooterAlign = taLeftJustify
TopDescription = 'test1 desc'
TitleImage = 1
ExtendedImage = 1
end>
HideSelection = False
IconOptions.WrapText = False
Items.ItemData = {
03D80000000500000000000000FFFFFFFFFFFFFFFF0000000000000000000000
0003740077006F00FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000
086100730064006600610073006400660000000000FFFFFFFFFFFFFFFF000000
000000000000000000057400680072006500650000000000FFFFFFFFFFFFFFFF
000000000000000000000000036F006E00650000000000FFFFFFFFFFFFFFFF00
00000000000000000000001866006F0075007200320033003300330033003300
33003300330033003300330033003300330033003300330033003300}
MultiSelect = True
GroupView = True
ParentDoubleBuffered = False
ShowColumnHeaders = False
TabOrder = 0
ViewStyle = vsReport
</code></pre>
<p>end</p>
<p>and Code to add item @ index 0</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
var
oListItem: TListItem;
begin
oListItem := ListView2.Items.Insert(0);
oListItem.Caption := 'CCCCCCCC';
oListItem.GroupID := 0;
end;
</code></pre>
<p>Thanks & Regards,
Pavan.</p>
http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077164#10771640Answer by Gerard for Adding or inserting an item to a TListView always adds it to the end when GroupView is ActiveGerard2009-07-02T23:19:19Z2009-07-02T23:19:19Z<p>You may need to assign the new ListItem to a GroupIndex, assuming that you have added at least 1 Group first and given it an ID.</p>
<pre><code>var
item: TListItem;
begin
item:= ListView.Items.Add;
item.GroupID=0;
end;
</code></pre>
<p>Or you can create the TListItem object first, give it the GroupID and use ListView.Items.AddItem(item, index) to add it to the ListView. </p>
http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077179#10771791Answer by François for Adding or inserting an item to a TListView always adds it to the end when GroupView is ActiveFrançois2009-07-02T23:24:05Z2009-07-02T23:24:05Z<p>It might depend on other properties you changed (like SortType).<br />
I tried with a simple text list (with ViewStyle =vsList) and it inserts at the specified index wether GroupView is set or not:</p>
<pre><code> object ListView1: TListView
Left = 24
Top = 16
Width = 250
Height = 150
Columns = <>
Items.ItemData = {
03480000000200000000000000FFFFFFFFFFFFFFFF00000000FFFFFFFF000000
00057400650073007400310000000000FFFFFFFFFFFFFFFF00000000FFFFFFFF
000000000574006500730074003200}
GroupView = True
TabOrder = 0
ViewStyle = vsList
end
procedure TForm1.Button1Click(Sender: TObject);
begin
ListView1.Items.Insert(1).Caption := Edit1.Text;
end;
</code></pre>