0

From my ASP.Net application Using Jquery I am trying to load a gif image to show the progress while waiting for a grid to appear from the code behind. I am using a dialog box for this. But the problem is that when to close this dialog box. Is there any event which is automatically fired when a code behind function is executed?

    $("#divloadwait").dialog({

        autoOpen: false,
        modal: false,
        height: 10,
        width: 10,
        resizable: false


    });

})

function ShowGroup() {

    $("#divGroup").dialog("open");
    showLoadWait();
}

The divGroup dialog box has iframe which has src pointed to another form.

MACMAN
  • 1,763
  • 1
  • 18
  • 33

0 Answers0