Iseue with grid FilterEdit and hidden column

Hi,
Delphi XE8
TMS Component Pack 7.9.1.0

I have an issue using FilterEdit with an hidden column at the same time.
Hopefully FilterEdit and hidden columns are not mutually exclusive!

To reproduce:
procedure TForm1.FormCreate(Sender: TObject);
begin
   AdvStringGrid1.FilterEdit.Enabled := True;
   AdvStringGrid1.HideColumn(1);
end;

Notice that the third column has no filter edit.
Also, click the button for row number 2 and change the filter to "Starts with"
The second filter type will be unchanged and the first column filter type will now be "Starts with".

Help would be appreciated.
Thanks!

We traced & solved this issue. The next update will address this.
As a temporary workaround for now, move all columns to be hidden first as rightmost columns.