Move To Mobile Page (Simple actions)

Replaces the current page using a slick web movement.

Defined in

Extension Library

Type of simple action

Mobile Apps (Server)

Syntax

<xe:moveTo direction="Left to Right|Right to Left" forceFullRefresh="true|false" loaded="true|false" saveDocument="true|false" targetPage="pagename" transitionType="slide|fade|flip"></xe:moveTo>

Examples

This tab bar button slides to viewPage.
<xe:tabBarButton id="tabBarButtonSave" label="Save" rendered="#{javascript:document1.isEditable()}">
		<xp:eventHandler event="onclick" submit="true" refreshMode="complete">
			<xp:this.action>
				<xe:moveTo forceFullRefresh="true" saveDocument="true"
					targetPage="viewPage" transitionType="slide" direction="Left to Right">
				</xe:moveTo>
			</xp:this.action>
		</xp:eventHandler>
	</xe:tabBarButton>