How can I do this in code
I am using
- Code: Select all
for lv_R := 0 to ip_Grid.RowCount - 1 do
begin
lv_S := '"' + ip_Grid.CellValues[0, lv_R] + '"';
for lv_C := 1 to ip_Grid.JQGridColumns.Count - 1 do
begin
if VarIsNull(ip_Grid.CellValues[lv_C, lv_R]) then
lv_S := lv_S + ',""'
else
lv_S := lv_S + ',"' + ip_Grid.CellValues[lv_C, lv_R] + '"';
end;
lv_SL.Add(lv_S);
end;
..but it only scrolls through displayed rows.
TIA