than joergb
I needed to switch off the virtualMode before connecting to cell[1,1]
this code works well for me.
I needed to switch off the virtualMode before connecting to cell[1,1]
this code works well for me.
Code:
procedure TIWFrame1.IWjQGrid1AsyncDblClickRow(Sender: TObject;
EventParams: TStringList; const RowID: string; const Row, Col: Integer);
var
text1 : string;
begin
IWjQGrid1.VirtualMode := false;
text1 := IWjQGrid1.Cell[1,1];
IWjQGrid1.VirtualMode := true;
end;
