Добавление кнопок в $ .dialog (jquery-verify.js) - PullRequest
0 голосов
/ 08 марта 2019

В настоящее время я использую jquery-verify.js для предупреждений, подтверждений и диалогов.

https://craftpip.github.io/jquery-confirm/

Проблема в том, что я не могу адаптировать кнопки к диалогам, яне уверен, что это плагин или просто мое отсутствие знаний о JS.

Например, у меня есть этот диалог:

                setTimeout(function () {
              $.dialog({
                title: 'Existing user',
                content: "This account is already registered on our system. If you are the real owner, contact us!",
                icon: 'fas fa-user',
                theme: 'modern',
                animation: 'scale',
                type: 'red',
                draggable: false,
                closeIcon: function () {
                  setTimeout(function () {
                      window.location="/dashboard";
                  }, 250);
                }
              });
            }, 200);

Единственная кнопка - closeIcon.Как я могу это сделать, если я хочу добавить это ему?Я имею в виду, buttons.

                        $.confirm({
                        title: 'Confirmation',
                        content: 'Are you sure do you want to delete <strong>'+ig_name+'</strong>? We will delete all the information, however you will be able to add it again whenever you want.',
                        icon: 'fa fa-user-times',
                        animation: 'scale',
                        closeAnimation: 'scale',
                        opacity: 0.5,
                        draggable: false,
                        escapeKey: 'cancel',
                        buttons: {
                            'confirm': {
                                text: 'Delete',
                                btnClass: 'btn-blue',
                                action: function () {
                                  document.getElementById('DeleteAccountForm1').submit();
                                } 
                            },
                            cancel: {
                              text : 'Cancel',
                            },
                        }
                    });
                });

РЕДАКТИРОВАТЬ:

Я пытался с этим, но $ .dialog не отображается.

    buttons: {
    confirm: function () {
        $.alert('Confirmed!');
    },
    cancel: function () {
        $.alert('Canceled!');
    },
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...