I am getting one issue when i am trying to load about 10000 records of data into JQGrid using JSON as datasource.
Browser got freeze or not responded for about 5 min at that point. My customized loader is also hanging with browser and progress of the page is not shown.
It is ok if the rendering of the JQgrid is taking time, but I want to atleast show my loader spinning for the progress.
Tried all these ways to make loader spin.. But nothing is working.
Can anyone help me to show loader when Jqgrid is being rendered.
loadui : "disable",
loadtext: "Loading...",
beforeRequest : function () {
$("#testGrid").block();
$('.loading').show();
$("#testGrid").closest(".ui-jqgrid").find('.loading').show();
$(".loading").css("display", "block");
$(this).block({
message: '<img src="/images/loader.gif" />',
}); },
Thanks,