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;