1

ここで複数の投稿を読んで、コードを機能させようとしても、何も役に立ちませんでした。私が達成しようとしているのは、ユーザーがダイアログ メッセージの [OK] ボタンをクリックしたときに noty から戻り値を取得することです。C# コードビハインドでその値を取得し、さらにロジックを続行したいと考えています。Messagedialog は動作し、期待どおりに表示されますが、ユーザーが [OK] をクリックしたときに true/false を取得する方法がわかりません。前もって感謝します!

<asp:Button ID="btnInactivate" runat="server" Text="Inactivate" OnClick="btnInactivate_Click" Visible="false" CssClass="buttonInactivate"/> 

protected void btnInactivate_Click(object sender, EventArgs e)
{           
    this.ClientScript.RegisterStartupScript(this.GetType(), "script", "confirm_noty();", true);

    var retValue = noty........
    // get the value from noty 
    // button ok pressed ... continue with further process....
}

function confirm_noty() {
 var n = noty({
    layout: 'center',
    type: 'warning',
    text: 'Do you want to inactivate current record?',
    dismissQueue: true,
    theme: 'defaultTheme',
    modal: true,
    buttons: [
           {
               addClass: 'btn btn-primary', text: 'Ok', onClick: function ($noty) {

                   // this = button element
                   // $noty = $noty element

                   $noty.close();
                   noty({
                       dismissQueue: true, force: true, layout: 'center', theme: 'defaultTheme', text: 'Record successfully inactivated.', type: 'success',
                       "animateClose": { "height": "toggle" }, "speed": "550", "timeout": "1200", "closable": true, "closeOnSelfClick": true
                   });
               }
           },
           {
               addClass: 'btn btn-danger', text: 'Cancel', onClick: function ($noty) {
                   $noty.close();
               }
           }
    ]
});

}

4

0 に答える 0