* Support OldValue

This commit is contained in:
michael 2018-06-23 17:08:56 +00:00
parent 431727c61e
commit 5113c4f198

View File

@ -777,9 +777,19 @@ var
begin
if (FEditIdx=Buffer.Bookmark) then
R:=FEditRow
begin
if State=dsOldValue then
R:=Buffer.data
else
R:=FEditRow
end
else
R:=Buffer.data;
begin
if State=dsOldValue then
Exit(Null)
else
R:=Buffer.data;
end;
Result:=FFieldMapper.GetJSONDataForField(Field,R);
end;