dojox/mobile/SwapView¶
Authors: | Yoshiroh Kamiyama |
---|---|
Developers: | Yoshiroh Kamiyama |
since: | V1.7 |
Introduction¶
SwapView is a container widget which can be swiped horizontally. SwapView is a subclass of dojox/mobile/View. SwapView allows the user to swipe the screen left or right to move between the views. When SwapView is swiped, it finds an adjacent SwapView to open. When the transition is done, a topic “/dojox/mobile/viewChanged” is published.
Note that, to behave properly, the SwapView needs to occupy the entire width of the screen.
Constructor Parameters¶
Inherited from dojox/mobile/View¶
Parameter | Type | Default | Description |
selected | Boolean | false | If true, this view is displayed at startup time. |
Usage¶
Basic usage is the same as for dojox/mobile/View. View transition will be performed in the order you place SwapViews in a page.
Examples¶
Declarative example¶
In this example, there are two SwapViews, and the user can swipe the screen to move the views back and forth.
require([
"dojox/mobile",
"dojox/mobile/parser",
"dojox/mobile/SwapView"
]);
<div data-dojo-type="dojox/mobile/SwapView">
<h2 data-dojo-type="dojox/mobile/RoundRectCategory">Page flipping demo</h2>
<div data-dojo-type="dojox/mobile/RoundRect">
Swipe the screen left or right to flip between the views.
</div>
</div>
<div data-dojo-type="dojox/mobile/SwapView">
<h1 data-dojo-type="dojox/mobile/Heading">View 2</h1>
<div data-dojo-type="dojox/mobile/RoundRect">
View 2
</div>
</div>