ฉันมี jQuery UI Dialog ทำงานได้ดีบนหน้า ASP.NET ของฉัน:
jQuery(function() {
jQuery("#dialog").dialog({
draggable: true,
resizable: true,
show: 'Transfer',
hide: 'Transfer',
width: 320,
autoOpen: false,
minHeight: 10,
minwidth: 10
});
});
jQuery(document).ready(function() {
jQuery("#button_id").click(function(e) {
jQuery('#dialog').dialog('option', 'position', [e.pageX + 10, e.pageY + 10]);
jQuery('#dialog').dialog('open');
});
});
div ของฉัน:
<div id="dialog" style="text-align: left;display: none;">
<asp:Button ID="btnButton" runat="server" Text="Button" onclick="btnButton_Click" />
</div>
แต่ btnButton_Click ไม่เคยถูกเรียก ... ฉันจะแก้ปัญหาได้อย่างไร
ข้อมูลเพิ่มเติม: ฉันเพิ่มรหัสนี้เพื่อย้าย div ไปยังแบบฟอร์ม:
jQuery("#dialog").parent().appendTo(jQuery("form:first"));
แต่ก็ยังไม่ประสบความสำเร็จ ...