i
Redirection
Access methods are used to retrieve items or access specific functionalities.
Access Method
Name |
Description |
Result |
---|---|---|
$d.redirectToCalendar(target, params) |
Redirection to the user's calendar. •String target: Navigation Url •Object params (optional): Configuration object |
- |
$d.redirectToCase(idCase, target, params) |
Redirection to a process case. •String idCase: Case identifier •String target: Navigation url •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToCaseExecution(idCase, target, params) |
Redirection to a process activity. •String idCase: Case identifier •String target: Navigation url •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToCaseStart(idCase, target, params) |
Redirection to the process start. •String idCase: Case identifier •String target: Navigation url •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToDashboard(target, params) |
Redirection to the user's dashboard. •String target: Navigation url •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToError(message) |
Redirection to the error page modeled in the application. •String message: Content of the message to be displayed on the page |
- |
$d.redirectToFormCreate(idForm, target, params) |
Redirection to a form creation. •String idForm: Form identifier •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToFormUpdate(idForm, idKey, idInstance, target, params) |
Redirection to a form update. •String idForm: Form identifier •String idKey: Document key •String idInstance: Identifier of the instance •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; }. |
- |
$d.redirectToFormDelete(idForm, idKey, idInstance, target, params) |
Redirection to a form deletion. •String idForm: Form identifier •String idKey: Document key •String idInstance: Identifier of the instance •String target: Destination type •Object params (optional): Configuration object |
- |
$d.redirectToFormShow(idForm, idKey, idInstance, target, params) |
Redirection to a form show. •String idForm: Form identifier •String idKey: Document key •String idInstance: Identifier of the instance •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToFormSearch(idForm, target, params) |
Redirection to a form search. •String idForm: Form identifier •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToPage(idPage, target, params) |
Redirection to a page. •String idPage: Destination page identifier •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToTasks(idTasks, target, params) |
Redirection to the user's tasks. •String idTasks: Task identifier •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |
$d.redirectToUrl(url, target, params) |
Redirection to a specific URL. •String url: Navigation url •String target: Destination type •Object params (optional): Parameter configuration object as modeled. It is used to send the parameters to the destination, in the key format: value Example: params?: { [key: string]: string; } |
- |