如何在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");
}
} });
}