mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 10:37:49 +02:00
* Merging revisions 925 from trunk:
------------------------------------------------------------------------ r925 | michael | 2020-11-10 10:35:17 +0100 (Tue, 10 Nov 2020) | 1 line * Check browse mode before setting recno ------------------------------------------------------------------------
This commit is contained in:
commit
f0f1855f73
@ -1747,10 +1747,12 @@ end;
|
||||
|
||||
procedure TBaseJSONDataSet.SetRecNo(Value: Integer);
|
||||
begin
|
||||
CheckBrowseMode;
|
||||
DoBeforeScroll;
|
||||
if (Value < 1) or (Value > FCurrentIndex.Count) then
|
||||
raise EJSONDataset.CreateFmt('%s: SetRecNo: index %d out of range',[Name,Value]);
|
||||
FCurrent := Value - 1;
|
||||
Resync([]);
|
||||
Resync([]);
|
||||
DoAfterScroll;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user