new Pages(optionsopt)
- Source:
Properties:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
options.pages |
Array.<(Page|DOMNode|String)> |
<optional> |
[]
|
An array of either an instance of Page (or derivate), a DOMNode or a string of HTML which gets wrapped in a new Container. |
options.show |
Integer |
<optional> |
-1
|
The page to show. Set to -1 to hide all pages. |
options.animation |
String |
<optional> |
"horizontal"
|
The direction of the
flip animation, either |
Pages contains different pages (Pages) which can be swiched via option.
Example
var pages = new Pages({
pages: [
{
content: document.createElement("span"),
},
{
content: "<h1>Foobar</h1><p>Lorem ipsum dolor sit amet</p>",
}
]
});
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
options |
Object |
<optional> |
{ }
|
An object containing initial options. |
Extends
Members
element
- Source:
- Overrides:
The main DIV element. Has the class .aux-pages
.
Methods
addChild(child)
- Source:
- Inherited From:
- See:
Registers a widget as a child widget. This method is used to build up the widget tree. It does not modify the DOM tree.
Parameters:
Name | Type | Description |
---|---|---|
child |
Widget | The child to add. |
Fires:
- Widget#event:child_added
addChildren(a)
- Source:
- Inherited From:
Registers an array of widgets as children.
Parameters:
Name | Type | Description |
---|---|---|
a |
Array.<Widget> | An array of Widgets. |
addPage(content, position, optionsopt)
- Source:
Adds a Page to the pages and a corresponding Button to the pages Navigation.
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
content |
Page | DOMNode | String | The content of the page.
Either an instance of a Page (or derivate) widget,
a DOMNode or a string of HTML which gets wrapped in a new Container
with optional options from argument |
||
position |
integer | undefined | The position to add the new page to. If undefined, the page is added at the end. |
||
options |
Object |
<optional> |
{ }
|
An object containing options for
the Page to be added as page if |
Fires:
addPages()
- Source:
Properties:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
options.pages |
Array.<(Page|DOMNode|String)> |
<optional> |
[]
|
An array of either an instance of Page (or derivate), a DOMNode or a string which gets wrapped in a new Page. |
Adds an array of pages.
Example
var p = new Pages();
p.addPages(['foobar']);
allChildren()
- Source:
- Inherited From:
Returns an array of all children.
appendChild(child)
- Source:
- Inherited From:
Appends child.element
to the widget element and
registers child
as a child widget.
Parameters:
Name | Type | Description |
---|---|---|
child |
Widget | The child widget to append. |
appendChildren(children)
- Source:
- Inherited From:
Calls Widget#appendChild for an array of widgets.
Parameters:
Name | Type | Description |
---|---|---|
children |
Array.<Widget> | The child widgets to append. |
current()
- Source:
Returns the currently displayed page or null.
destroy()
- Source:
- Overrides:
Dispose of this Widget.
destroyAndRemove()
- Source:
- Inherited From:
Dispose of this Widget and remove it from the DOM.
disableTansitions()
- Source:
- Inherited From:
Disable CSS transitions.
empty()
- Source:
Removes all pages.
enableDraw()
- Source:
- Inherited From:
Schedules this widget for drawing.
Fires:
enableDrawChildren()
- Source:
- Inherited From:
Enables rendering for all children of this widget.
enableTransitions()
- Source:
- Inherited From:
Enable CSS transitions.
first() → {Boolean}
- Source:
Opens the first page of the pages. Returns true
if a
first page exists, false
otherwise.
Returns:
True if successful, false otherwise.
- Type
- Boolean
forceHide()
- Source:
- Inherited From:
Hide the widget immediately by applying the class aux-hide
.
Does not call disableDraw().
forceShow()
- Source:
- Inherited From:
Show the widget immediately by applying the class aux-show
.
Does not call enableDraw().
getStyle()
- Source:
- Inherited From:
Returns the computed style of this widget's DOM element.
hidden()
- Source:
- Inherited From:
Returns the current hidden status.
hide()
- Source:
- Inherited From:
Starts the transition of the visible
to false
.
hideChild(child)
- Source:
- Inherited From:
Switches the hidden state of a child to hidden
.
The argument is either the child index or the child itself.
Parameters:
Name | Type | Description |
---|---|---|
child |
Object | integer | Child or its index. |
invalidate(key)
- Source:
- Inherited From:
Invalidates an option and triggers a redraw() call.
Parameters:
Name | Type | Description |
---|---|---|
key |
string |
invalidateAll()
- Source:
- Inherited From:
Invalidates all dependencies which will trigger all renderers to rerun.
isChildHidden(child) → {boolean}
- Source:
- Inherited From:
Returns true if the given child is currently marked as hidden in this container.
Parameters:
Name | Type | Description |
---|---|---|
child |
number | Widget |
Returns:
- Type
- boolean
last() → {Boolean}
- Source:
Opens the last page of the pages. Returns true
if a
last page exists, false
otherwise.
Returns:
True if successful, false otherwise.
- Type
- Boolean
next() → {Boolean}
- Source:
Opens the next page of the pages. Returns true
if a
next page exists, false
otherwise.
Returns:
True if successful, false otherwise.
- Type
- Boolean
observeResize(cb)
- Source:
- Inherited From:
Calls a callback whenever the widget resizes. This method will trigger one resize.
Parameters:
Name | Type | Description |
---|---|---|
cb |
function |
prev() → {Boolean}
- Source:
Opens the previous page of the pages. Returns true
if a
previous page exists, false
otherwise.
Returns:
True if successful, false otherwise.
- Type
- Boolean
removeChild(child)
- Source:
- Inherited From:
Removes a child widget. Note that this method only modifies the widget tree and does not change the DOM.
Parameters:
Name | Type | Description |
---|---|---|
child |
Widget | The child to remove. |
Fires:
- Widget#event:child_removed
removeChildren(a)
- Source:
- Inherited From:
Removes an array of children.
Parameters:
Name | Type | Description |
---|---|---|
a |
Array.<Widget> | An array of Widgets. |
removePage(page, destroy)
- Source:
Removes a page from the Pages.
Parameters:
Name | Type | Description |
---|---|---|
page |
integer | Page | The container to remove. Either an
index or the Page widget generated by |
destroy |
Boolean | destroy the Page after removal. |
Fires:
set(key, value)
- Source:
- Overrides:
Sets an option.
Parameters:
Name | Type | Description |
---|---|---|
key |
string | The option name. |
value |
The option value. |
setStyle()
- Source:
- Inherited From:
Sets a CSS style property in this widget's DOM element.
show()
- Source:
- Inherited From:
Starts the transition of the visible
to true
.
showChild(child)
- Source:
- Inherited From:
Switches the hidden state of a child to shown
.
The argument is either the child index or the child itself.
Parameters:
Name | Type | Description |
---|---|---|
child |
Object | integer | Child or its index. |
toggleChild(child)
- Source:
- Inherited From:
Toggles the hidden state of a child. The argument is either the child index or the child itself.
Parameters:
Name | Type | Description |
---|---|---|
child |
Object | integer | Child or its index. |
toggleHidden()
- Source:
- Inherited From:
Toggle the hidden status. This is equivalent to calling hide() or show(), depending on the current hidden status of this widget.
transitionsDisabled()
- Source:
- Inherited From:
Returns true if transitions are currently disabled on this widget.
visibleChildren()
- Source:
- Inherited From:
Returns an array of all visible children.
Events
added
- Source:
A page was added to the Pages.
Parameters:
Name | Type | Description |
---|---|---|
page |
Page | The Page which was added as a page. |
changed
- Source:
The page to show has changed.
Parameters:
Name | Type | Description |
---|---|---|
page |
Page | The Page instance of the newly selected page. |
id |
number | The ID of the page. |
destroy
- Source:
- Inherited From:
Is fired when a widget is destroyed.
doubleclick
- Source:
- Inherited From:
Is fired after a double click appeared. Set dblclick
to 0 to
disable click event handling.
Parameters:
Name | Type | Description |
---|---|---|
event |
string | The browsers |
GenericDOMEvents
- Source:
- Inherited From:
Generic DOM events. Please refer to W3Schools for further details.
hide
- Source:
- Inherited From:
The hide
event is emitted when a widget is hidden and is not rendered anymore.
This happens both with browser visibility changes and also internally when using layout widgets
such as Pager.
initialized
- Source:
- Inherited From:
Is fired when a widget is initialized.
removed
- Source:
A page was removed from the Pages
Parameters:
Name | Type | Description |
---|---|---|
page |
Page | The Page which was removed. |
index |
number | The index at which the container was. |
resize
- Source:
- Inherited From:
The resize
event is emitted whenever a widget is being resized. This event can
be used to e.g. measure its new size. Note that some widgets do internal adjustments after
the resize
event. If that is relevant, the Widget#resized event can
be used instead.
resized
- Source:
- Inherited From:
The resized
event is emitted after each rendering frame, which was triggered by
a resize event.
set
- Source:
- Inherited From:
The set
event is emitted when an option was set using the Widget#set
method. The arguments are the option name and its new value.
Note that this happens both for user interaction and programmatical option changes.
show
- Source:
- Inherited From:
The show
event is emitted when a widget is shown and is being rendered. This is the
counterpart to Widget#hide.
useraction
- Source:
The useraction
event is emitted when a widget gets modified by user interaction.
The event is emitted for the option show
.
Parameters:
Name | Type | Description |
---|---|---|
name |
string | The name of the option which was changed due to the users action |
value |
mixed | The new value of the option |
visibility
- Source:
- Inherited From:
Is fired when the visibility state changes. The first argument
is the visibility state, which is either true
or false
.