Readonly
HttpReadonly
HttpReadonly
HttpReadonly
HttpReadonly
HttpReadonly
HttpReadonly
HttpReadonly
oauthThe [[OAuth]].
Readonly
requestThe [[Request]].
Readonly
responseRetrieves the response.
Readonly
URIFetches a resource. If the resource can be not be retrieved locally then this will perform a HTTP request to retrieve it. If a HTTP request is required, the parameter defaults are
{
method: "GET",
readTimeout: 60_000,
connectionTimeout: 60_000
}
Optional
params: FetchParamsChecks if the page that is currently being loaded is of a certain layout type. This function allows for the same Merge Report to be used in doing different things based on Layout Type. Layout types are "MANAGE" (more to come).
Returns information about the current page.
It causes a message to display for the current user who is making the current edit.
Contains the message or Exception to be displayed for the user. Typically this message will be displayed in red text at the top of the page
Optional
abort: booleanWhen false - the default, do not abort. If abort is true, then all changes associated with the current edit will be cancelled. Also, if the current operation is a standard Relate edit, then the user will be returned to the edit screen and be given the opportunity to revise their changes and try again.
Things which will be cancelled include changes made by the user, changes made by this and other formulas, and email and intramail messages sent by formulas. In technical terms, sending an abort causes a database rollback to occur for the current transaction.
If an abort is sent during the execution of a scheduled formula (either by the scheduled formula itself or by another formula triggered by the scheduled formula), only changes to the current record will be cancelled. Changes to other records will still be completed and stored.
If an abort is sent during an import, the entire import will fail and the message will be displayed as an import error.
This method is used to store and retrieve information in the current session.
Used to get information about the current site's navigation. Specifically, it gives you an object representing the currently navigated page, from which you can traverse the site structure tree to access information about all of the pages available through the site's navigation. Pages which the currently logged in user does not have permission to and pages which are marked to not show in navigation are not accessible through this function.
Optional
startAtRoot: booleanWhen false - the default, the returned SiteNavItem will start at the current page scope otherwise start at the root.
Optional
includeHidden: booleanWhen false - the default, pages configured to be 'hidden in navigation' are excluded.
Converts a local url (i.e. begins with a '/') to a full url.
String that must start with '/'.
Returns a URLSearchParams object from a query string.
Of the form param1=val1¶m2=val2
. Leading ?
is ignored.
TODO