JQuery UI Veli Dialog güncelle

2 Cevap php

Tümü,

Bir web sayfasındaki bir bağlantıyı tıkladığınızda, bir JQuery UI iletişim açılır ve bunun içine bazı ajax içeriği yükler. Ben bu iletişim içinde bir bağlantıyı tıklarsanız, bir çocuk iletişim kutusu açılır. Ben çocuk diyaloğunda "Tamam" a tıklayın, ben ebeveyn iletişim ajax içeriği kapatmak ve yenilemek için çocuk diyaloğu istiyorum.

2 Cevap

Zaten çocuk iletişimi kapatır kodu var mı? Bir uyarı () çağrısı mı? Eğer öyleyse, sadece eklemek

        location.reload();

uyarı çağrısından sonra. Bir bağlantısı gibi daha karmaşık bir şey varsa, deneyin

$('a.link-that-closes-dialog').click(function(){
  //Code to close the dialog
  location.reload();
 });

i use this script for choose if show/hide any content. After clicking button "Ritira" in the dialog, the page redirect me in the same page but whit a querystring (ex. www.mypage.ext?t=yes). The script work, but I wish at the click of the button "Check Out" there is a refresh of the page. I tried to enter the location.reload but did not work:

        $(function() {
         $(document).ready(function() {
            $(".dialog-ritira").dialog({
              autoOpen: false,
              modal: true
            });
          });

          $(".ritira").click(function(e) {
            e.preventDefault();
            var targetUrl = $(this).attr("href");

            $(".dialog-ritira").dialog({
              buttons : {
                "Ritira" : function() {
                  window.location.href = targetUrl;
                  location.reload();
                },
                "Annulla" : function() {
                  $(this).dialog("close");
                }
              }
            });

            $(".dialog-ritira").dialog("open");
          });
        });

Teşekkürler