Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

blockUI works but unBlockUI Isn't

I've implemented block UI as this request can take a little, time when the ajax request starts everything works as expected.

But when the ajax request finishes and the msgbox is shown, the UI doesn't unblock!

Any ideas?

I'm using IE8.

$().ajaxStart($.blockUI); 
$().ajaxStop($.unblockUI); 

function ChangeCompanyState(companyId, state) {
    var parameters = "{companyId:" + companyId + ",state:\"" + state + "\"}";
    $.ajax({
        type: "POST",
        url: "Ajax/AjaxFragments.aspx/ChangeCompanyState",
        data: parameters,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            if (msg.d.length > 1) {
                alert(msg.d);
                $.unblockUI();
            }
            else {
                //Theres no message to process success.
                window.location.reload();
            }
        }

    });
}
like image 845
RubbleFord Avatar asked Sep 18 '09 07:09

RubbleFord


1 Answers

$.unblockUI();
$(".blockUI").fadeOut("slow"); 
like image 174
Michael Offengenden Avatar answered Sep 29 '22 23:09

Michael Offengenden