1. ホーム
  2. c#

[解決済み】ASP.NETボタンのポストバックによるjQuery UIダイアログ

2022-03-29 07:49:06

質問

ASP.NETのページでjQuery UI Dialogがうまく動作しています。

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をformに移動させるためにこのコードを追加しました。

jQuery("#dialog").parent().appendTo(jQuery("form:first"));

でも、まだ成功しない...。

どうすればいいですか?

解決に近づいていますが、間違ったオブジェクトを取得しているだけです。このようになるはずです。

jQuery(function() {
    var dlg = jQuery("#dialog").dialog({
                         draggable: true,
                         resizable: true,
                         show: 'Transfer',
                         hide: 'Transfer',
                         width: 320,
                         autoOpen: false,
                         minHeight: 10,
                         minwidth: 10
                     });
    dlg.parent().appendTo(jQuery("form:first"));
});