jquery ダイアログに選択可能な動的リストを配置するにはどうすればよいですか。私がやりたいことは、ユーザーがボタンをクリックするとダイアログが表示され、sqlite データベースからの結果がリストに入力されることです。次に、ユーザーは希望する結果をクリックし、ダイアログのボタンをクリックして結果を読み込みます。
私のダイアログ コードは次のとおりです... SQLite の結果を表示するダイアログを開いたときに、ダイアログにリストを表示したいと思います。
function setImportDialog()
{
$('#importDialog').dialog({
resizeable: false,
autoOpen: false,
modal: true,
buttons:{
"Import Test": function(){
if( isWindows() )
{
log("Importing Test Data: ");
importTestData(); //' here is where it would grab the selected item and perform actions on said item
}
$(this).dialog("close");
},
"Cancel": function(){
$(this).dialog("close");
}
} });
}