Error on ItemDescriptionAnchorClick TTMSFMXTableView

Hello

I have an issue executing a "showmesage" inside the ItemDescriptionAnchorClick event

Why?

Is this a normal ShowMessage? Does the ShowMessage work in a new empty project?

Yes that's a normal "showmessage", it gaves me on ItemDescriptionAnchorClick

Clicking on an anchor will try to automatically open the source value of it. Please try this code:

procedure TForm1.TMSFMXTableView1ItemCustomize(Sender: TObject;
  AItem: TTMSFMXTableViewItem; AItemShape: TTMSFMXTableViewItemShape;
  AItemControlShape: TControl);
begin
  (AItemShape.ShapeDescription as TTMSFMXHTMLText).AutoOpenURL := False;
end;