Displays a message to the user when a certain amount of time remains to the expiration of the session.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| warningTime | int | no | 300 | The number of seconds before session expiration when a warning message will appear. |
| autoProlongTime | int | no | 900 | The number of seconds before session expiration when the session will be automatically prolonged upon user activity. |
| warningMessage | String | no | The connection was inactive for more than {0} minutes. Your session will expire at {1}.\\n Please click OK to continue your work or CANCEL to close the session. | The warning message that will appear when the session is about to exipre. Here {0} is replaced by the number of minutes that remain until expiration and {1} is replaced with the time when the expiration will occur. |
| expirationMessage | String | no | Your session has expired. Please log in again. | The message that will appear when the session exipres and the user needs to log in again. |
| disableWarning | boolean | no | false | Do not display a warning message after 'warningTime' seconds. |
| disableAutoProlong | boolean | no | false | Disable the automatic prolonging of a session after 'autoProlongTime' seconds upon user activity. |
| expirationFunction | String | no | The JavaScript function that will be invoked when the session expires. |
Body: removed
Informal parameters: forbidden
Reserved parameters: none
<html>
<head>
<title>Timeout Example</title>
</head>
<body>
<span jwcid="@contrib:Timeout" warningTime="100"/>
</body>
</html>