Samsungのドキュメントと同じようにlistinputポップアップを作成したい:http: //www.samsungdforum.com/Guide/View/Developer_Documentation/User_Experience_Guideline_1.5/Extra_Features/Policy_on_popup_windows/Action_Window
このような:
しかし、これを実装する方法についての情報はありません。
これが私が見つけたサンプルコードです:
$('#newName_popup').sfPopup({
text: 'Enter your name',
buttons: ['Ok', 'Cancel'],
timeout: 0,
defaultFocus: 0,
callback: function newNameCallback(selectedIndex){
alert('popup_callback');
if(selectedIndex == 0){
alert();
}
}
});
すべてのプロパティ(テキスト、ボタンなど)の名前を見つけるにはどうすればよいですか?