Icon View Incident Report

Serious Serious
Reported By: Walter Matte [Tactical Business Corporat
Reported On: 2/3/2014
For: Version 1.03 Build 2
# 3983 Hiding and Showing More than One Column in a Grid Causes Display/Column Issues

Hiding and Showing More than one Column in a Grid


// Hide Works
procedure TfrmSelSearch.Button1Click(Sender: TObject);
begin
 grdSearch.Columns.Column[1].Hide;
 grdSearch.Columns.Column[2].Hide;
end;

//FAILS
procedure TfrmSelSearch.Button2Click(Sender: TObject);
begin
 grdSearch.Columns.Column[1].Show;
 grdSearch.Columns.Column[2].Show;
end;

// Reverse the order (Right to Left) and it Works - as long as you are making all the columns visible....
procedure TfrmSelSearch.Button2Click(Sender: TObject);
begin
 grdSearch.Columns.Column[2].Show;
 grdSearch.Columns.Column[1].Show;
end;



Comments Comments and Workarounds
The workaround (not great) is to show the columns in the reverse order in which they were shown.


Resolution Resolution
Fixed Problem on 2/4/2014 in version 1.03 build 3


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image