pageTitle - Page Title

Generates a title for a page.

Category

basics

Syntax

pageTitle="title"

Usage

In Design mode, click the top tab under Properties and look for Page title, or click All Properties and look for pageTitle under basics.
In generated XML, this property appears as a title element, for example:
<title>My Page</title>

In the Notes® client, the title appears on the page tab.

Examples

This page has a title:
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" pageTitle="My Page">
	<xp:this.data>
		<xp:dominoDocument var="document1" formName="form1"></xp:dominoDocument>
	</xp:this.data>
	<xp:inputText id="inputText1" value="#{document1.subject}"
		style="font-weight:bold">
	</xp:inputText>
	<xp:button value="submit" id="button1" style="font-weight:bold">
		<xp:eventHandler event="onclick" submit="true"
			refreshMode="complete" immediate="false" save="true">
		</xp:eventHandler>
	</xp:button>
</xp:view>