Tms Web Core: v1.4.0.0 Ravenna Release Notes
Tms Web Core: v1.4.0.0 Ravenna Release Notes
Tms Web Core: v1.4.0.0 Ravenna Release Notes
June 2020
Contents
Breaking changes in TMS WEB Core v1.4 ............................................................................................... 3
Example:
Now it is changed to
with
TJSHTMLElementRecord = record
element: TJSHTMLElement;
end;
if becomes now
This affects all classes where previously such JavaScript object was directly used, i.e. also the
TWebHttpRequest.OnRequestResponse event
It changed from
OnRequestResponse(Sender: TObject;
ARequest: TJSXMLHttpRequest; AResponse: string);
to
OnRequestResponse(Sender: TObject;
ARequest: TJSXMLHttpRequestRecord; AResponse: string);
with
TJSXMLHttpRequestRecord = record
req: TJSXMLHttpRequest;
end;
TMS SOFTWARE
TMS WEB Core
RELEASE NOTES
The property Environment has been removed as it is no longer available in the PayPal JavaScript API.
The environment is now automatically set to Live or Sandbox based on the provided API key.