TMSFMXTableView and OnAfterFilter

Dear Support,


I am using TMSFMXTableView, build-in-header EditSearch and want to track if the selected item after aplying filter still exists.
From what I have understood, the OnAfterFilter must match perfect for my needs. Unfortunatelly, I was not able to figure out how  to force it to work. 

I would also note that OnBeforeFilter is workable after both 'ApplyFilte' and changing EditSearch Text without extra efforts form my site.

In the 'TMS FMX UI Pack Demos\TableView\Overview' Demo all  works the same way:

procedure TForm536.TMSFMXTableView1AfterFilter(Sender: TObject;
  AFilterString: string);
begin
   showmessage('Hello After Filter');  // not seen
end;

procedure TForm536.TMSFMXTableView1BeforeFilter(Sender: TObject;
  var AFilterString: string; var AllowFilter: Boolean);
begin
   showmessage('Hello Before Filter'); // seen 
end;


All comments are kindly appreciated.


Thanks for pointing out, this was an issue in our component. The next version will address this.