error opening modal form with TMSFMXLiveGrid1CellBitmapClick

Hi,

I get an error when try to open modal form with CellBitmapClick event... like in exemple below

procedure TForm1.TMSFMXLiveGrid1CellBitmapClick(Sender: TObject; ACol, ARow: Integer; Cell: TFmxObject);
begin

(Sender as TTMSFMXLiveGrid).Selected := ARow;
//
if (ACol = 25) then
frmMain.ShowModal;

end;

We have experienced this as well when using an inplace editor. This is due to improper handling inside the default FMX events. To workaround this, please use a timer to start the form.

Ok,
Thank you for answer