TTMSFMXTableView reset scroll

Hello

https://timbralofacil.com/descargas/tabla.mp4

On video above there are sometimes that I filled the tableview with thousands of rows, later I clear items and try to fill again with another thousands of rows but the control stuck.

Check the video above and please tell me how to put TTMSFMXTableView on position zero, so if I add new items the pagination be at the first item.

Thanks

Here is another video: https://timbralofacil.com/descargas/tabla2.mp4

Next code is the one I used to create items at runtime based on a RemoteDB query

 TTMSFMXTableView.BeginUpdate;
 TTMSFMXTableView.Visible := False;
 TTMSFMXTableView.Items.Clear;
 TTMSFMXTableView.NeedStyleLookup;
 TTMSFMXTableView.ApplyStyleLookup;
 TTMSFMXTableView.ApplyFilter('');
 TTMSFMXTableView.GetSearchEdit.Text := '';

 // Here is the code to create items
 .......


 TTMSFMXTableView.EndUpdate;
 TTMSFMXTableView.Visible := True;

What happend with the answer?

Set TMSFMXTableView1.SelectedItemIndex := -1;