Documentation generator: JsDoc Toolkit 2.4.0
Template: Codeview 1.2
Generated on: 2016-0-4 21:24

Class enchant.widget.InputScene

Class Summary
Constructor Attributes Constructor Name and Description
 
enchant.widget.InputScene(content, acceptName, cancelName, placeholder)
インプットシーン.
Field Summary
Field Attributes Field Name and Description
<static>  
enchant.widget.InputScene.menu
<static>  
enchant.widget.InputScene.onaccept
<static>  
enchant.widget.InputScene.oncancel
<static>  
enchant.widget.InputScene.placeholder
<static>  
enchant.widget.InputScene.value
テキストエリアに入力された値.
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.InputScene(content, acceptName, cancelName, placeholder)
インプットシーン. 他の入力を遮り, 入力画面を表示する. enchant.widget.PromptSceneと違い, 複数行に渡る入力ができる.
    var input = new InputScene('新しいツイート', 'ツイート', 'やめる', '@twitter ');
    input.callback = function(text) {
        // acceptなら入力された文字列, cancelならnullが返ってってくる.
    };
    // cancel, accept個別に処理を設定することも可能.
    input.oncancel = function() {
    };
    input.onaccept = function(text) {
    };
Parameters:
{*} content
表示するコンテンツ.
{String} acceptName
了承ボタンのラベル.
{String} cancelName
キャンセルボタンのラベル.
{String} placeholder
プレースホルダ.

Field Detail

<static> enchant.widget.InputScene.menu
<static> enchant.widget.InputScene.onaccept
<static> enchant.widget.InputScene.oncancel
<static> enchant.widget.InputScene.placeholder
<static> enchant.widget.InputScene.value
テキストエリアに入力された値.