1

ExtJS でのプロンプトの定義は次のとおりです: Ext.window.MessageBox.prompt( title, msg, [fn], [scope], [multiline], [value] )。

fn が関数であることは明らかです。しかし、どのパラメータが fn に渡されるのか、私はいつも混乱しています。どうすればそれを見つけることができますか?

4

1 に答える 1

1

それはドキュメントにあります。fn パラメータまでスクロールします: http://docs.sencha.com/ext-js/4-1/#!/api/Ext.window.MessageBox-method-show

Parameters
buttonId : String
The ID of the button pressed, one of:

ok
yes
no
cancel
text : String
Value of the input field if either prompt or multiline is true
opt : Object
The config object passed to show.
于 2012-11-01T00:42:27.040 に答える