JQuery Dialog: Show Message in Dialog Box After Selecting Confirm Option -


i using jquery dialog ui have users confirm action on page. if yes, api call made , window redirect. if no, dialog closes.

before redirect, i'd show "success" message within actual dialog box, "this action performed". ideas on how can accomplished?

here's code:

$( "#dialog-confirm" ).dialog({     resizable: false,     height:140,     modal: true,     buttons:      {         "yes": function()          {                       var request = '123';             var url = '<?= $this->baseurl; ?>?rn=' + request;                 $.getjson(url, function(data) {});               }               var msg = 'action performed';                      //?   how display message in modal dialog window???                      $( ).dialog( "close" );             var url = '<?= $this->moduleurl; ?>/cancel';                     window.location.href = url;            },          "nevermind": function() {                 $( ).dialog( "close" );         }     } }); 

this may way, empty dialog div und append new text , set timout , after 3 seconds diloge closes , redirect happens

$( "#dialog-confirm" ).dialog({ resizable: false, height:140, modal: true, buttons:  {     "yes": function()      {                   var request = '123';         var url = '<?= $this->baseurl; ?>?rn=' + request;             $.getjson(url, function(data) {});           }           var msg = 'action performed';          $( "#dialog-confirm" ).empty();          $( "#dialog-confirm" ).text(msg);    settimeout(function() {      $( ).dialog( "close" );        var url = '<?= $this->moduleurl; ?>/cancel';                 window.location.href = url;  }, 3000);        },      "nevermind": function() {             $( ).dialog( "close" );     } } }); 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -