Hello again
I'm working with Delphi 11.3 and latest of your software, now the TableView component does not scroll, I recorded a video
What happend?
Hello again
I'm working with Delphi 11.3 and latest of your software, now the TableView component does not scroll, I recorded a video
What happend?
It's unclear from the video what exactly happens. It seems to be some kind of an stuck loop or update count. If you are using BeginUpdate/EndUpdate, are you sure that you are always calling pairs?
Seems you did not see your issues, here's another video, I create a new project, drop a tableview, add like 70 items on design time (NOT runtime) and then I compiled on Win64, it does not scroll the items.
I marked with a red rectangle the scroll that moves but NOT the item list.
We are able to reproduce this here and seems to be an 11.3 specific issue. We are currently looking for the root cause. We were not able to reproduce this here in 11.2
As a workaround please use
procedure TForm1.FormCreate(Sender: TObject);
begin
TMSFMXTableView1.NeedStyleLookup;
TMSFMXTableView1.ApplyStyleLookup;
TMSFMXTableView1.GetListContainer.Align := TAlignLayout.None;
end;
Indeed, it was on Delphi 11.3 as I wrote you 8 days ago.
Once you solved that will you release a new FMX UI Pack version?
For now, please use the workaround, we have yet to determine which side effects there are before we apply a permanent fix.
Alright
Thanks