dojoParseOnLoad - Trigger Dojo Parser on Load
Starts or does not start the dojo parser when the page is loaded.
Category
dojoSyntax
dojoParseOnLoad="true|false"
Usage
In Design mode, click the Dojo tab under Properties and look for Trigger Dojo parse on load, or click All Properties and look for dojoParseOnLoad under dojo.By default, the dojo parser is not loaded.
Examples
This XPage specifies a dojo form.<xp:view xmlns:xp="http://www.ibm.com/xsp/core" dojoForm="true" dojoParseOnLoad="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>