Child pages
  • NG and Web Client Settings

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: SVY-10596 Admin page settings for NG Client need to be reconsidered (template)

...

servoy.webclient.error.page

Filename of an HTML file template (no <html> and <body tags>) which will be shown when an error occurs. It resides in /servoy-webclient/templates/default/ for the Web Client and in ROOT (application_server/server/webapps) for the NG Client.

Code Block
languagexml
titleNG Client Error page example
<div style='padding:40px;' ng-controller="InternalServerErrorController">
	<div class="bs-callout bs-callout-danger" >
	<h1>Internal Server error </h1>
	<p>There was an error at the server side</p>
	<pre ng-if='error.stack' ng-bind='error.stack'></pre>
	</div>
</div>

servoy.webclient.pageexpired.page

Filename of an HTML file which template (no <html> and <body tags>) which will be shown when the session times out. It resides in /servoy-webclient/templates/default/ for the Web Client and in ROOT (application_server/server/webapps) for the NG Client.

Code Block
languagexml
titleNG Client Page expired example
<div style='padding:40px;' ng-controller="SessionExpiredController">
	<div class="bs-callout bs-callout-danger" >
	<h1>Page Expired</h1>
	<p>The page you requested has expired.</p>
	<p><a ng-href="{{redirectUrl}}">Return to home page</a></p>
	</div>
</div>

servoy.webclient.pageexpired.url

...