Class enchant.widget.AlertScene
- Defined in: widget.enchant.js
- Extends enchant.widget.Modal
Constructor Attributes | Constructor Name and Description |
---|---|
enchant.widget.AlertScene(content, acceptName)
Alert scene.
|
Field Attributes | Field Name and Description |
---|---|
<static> |
enchant.widget.AlertScene.onaccept
|
- Fields borrowed from class enchant.Group:
- childNodes, firstChild, lastChild, originX, originY, rotation, scaleX, scaleY
- Fields borrowed from class enchant.Node:
- age, parentNode, scene, x, y
Method Summary
- Methods borrowed from class enchant.Group:
- addChild
- insertBefore
- removeChild
- Methods borrowed from class enchant.Node:
- moveBy
- moveTo
- Methods borrowed from class enchant.EventTarget:
- addEventListener
- clearEventListener
- dispatchEvent
- on
- removeEventListener
Class Detail
enchant.widget.AlertScene(content, acceptName)
Alert scene.
Interrupt other input, display alert.
var alert = new ConfirmScene('Not possible', 'OK'); alert.callback = function() { }; alert.onaccept = function() { };
- Parameters:
- {*} content
- Content to display.
- {String} acceptName
- Label for acceptance button.
Field Detail
<static>
enchant.widget.AlertScene.onaccept