我正在使用 jQuery UI 的对话框来显示一些选项,每个选项都表示为复选框。现在,当我打开对话框并单击复选框时,什么也没有发生,复选框没有被选中。我使用的是 jQuery UI 的最新版本。
谁能告诉我怎么了?
这是代码
$('div#attachedDocuments').dialog({
autoOpen: false,
height: 300,
width: 350,
modal: true,
title: "Select files",
buttons: {
"Ok": function () {
$(this).dialog("close");
},
Cancel: function () {
$(this).dialog("close");
}
}
});
这是对话框
<div id="attachedDocuments">
<asp:Repeater ID="rptAttachments" runat="server"
OnItemDataBound="AttachedDocumentsDataBound">
<ItemTemplate>
<asp:CheckBox ID="checkBoxDocument" runat="server" />
</ItemTemplate>
</asp:Repeater>
</div>