jQuery UIのダイアログを使用して、それぞれがチェックボックスとして表されているいくつかのオプションを表示しています。ダイアログを開いてチェックボックスをクリックしても何も起こらず、チェックボックスがオンになりません。jQueryUIの最新バージョンを使用しています。
誰かが私に何が悪いのか教えてもらえますか?
これがコードです
$('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>