dojoTheme - Use Dojo Theme

Uses or does not use a dojo theme.

Category

dojo

Syntax

dojoTheme="true|false"

Usage

In Design mode, click the Dojo tab under Properties and look for Use Dojo theme, or click All Properties and look for dojoTheme under dojo.

By default, a dojo theme is not used.

Examples

This XPage uses a dojo theme.
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" dojoForm="true"
	dojoParseOnLoad="true" dojoTheme="true">
	<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>