开发者

How to show a loading bar inside jquery ui dialog?

开发者 https://www.devze.com 2023-02-07 21:28 出处:网络
Rigth now, I am using this function to load content from a different page inside a jquery ui dialog: function openDialogByUri(div, uri, title, width, height, buttonsArray) {

Rigth now, I am using this function to load content from a different page inside a jquery ui dialog:

function openDialogByUri(div, uri, title, width, height, buttonsArray) {
    div.load(uri, function() {
        div.dialog({
            title: title,
            width: width,
            height: height,
            position: 'middle',
            resizable: false,
            buttons: buttonsArray
        });
    });
}

F开发者_JAVA百科or example like this:

$('a.dictionary').click(function() {
    openDialogByUri($otherDialogContainer, '/test.php', 'Dialog title', 600, 400, 
        {
            'Close': function() {
                $otherDialogContainer.dialog('close');
            }
        }
    );
    return false;
});

The problem is that it may take some time until the content from the external page loads. Until that happens the dialog does nto appear and it looks like nothing is happening to users.

How can I modify that function to work like this:

When a user clicks on a link calling the function above, the dialog opens immediatelly. Inside the dialog there is some loading bar or similar image which indicates that the contetn is loading. Once the content is loaded insert it inside the dialog.


Well, this seems to work:

function openDialogByUri(div, uri, title, width, height, buttonsArray) {
    div.html("<div style=\"height: "+(height-80)+
             "px; background: url('/images/ajax-loader.gif') center center no-repeat;\"></div>");
    div.dialog({
        title: title,
        width: width,
        height: height,
        position: 'middle',
        resizable: false,
        buttons: buttonsArray
    });
    $.ajax({
        url: uri,
        success: function(response) {
            div.html(response);
        },
        error: function(response) {
            alert(response);
        }
    });
}


            function showUrlInDialog(url) {
            var id = '<%= ResolveUrl("~/connecting.gif")%>';
            var tag = $("<div><div id='img' align='center'><img src='" + id + "' /></div></div>");
            tag.dialog({ show: 'fade', hide: 'fade', modal: false, closeOnEscape: false, draggable: false, autoOpen: false,
                resizable: false, close: function (event, ui) {
                    $(this).dialog('destroy');
                    $(this).dialog('close');
                    $(this).remove();
                }
            }).dialog('open');
            $.ajax({
                url: url,
                success: function (data) {
                    tag.append(data);
                    $("#img").hide();
                },
                error: function (data) {
                    $("#img").hide();
                }
            });
        }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号