Hi All,
My grid contains large data around 66000 rows with Paging enabled.
I need to display some processing image whenever grid is in processing mode after any action (Sorting,groupinf,Paging etc..).
I have tried with EnableProgressIndicator but it not working.
Please help me ...
Thanks.
HI Raju
May be this following code might be useful for you or for other person who are having same type of problems.
<
asp:ScriptManager ID="ScriptManager1" runat ="server"/>
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
// get the update progress div
// make it invisible
updateProgressDiv.style.display = ''
;
}
function EndRequestHandler(sender, args) {
updateProgressDiv.style.display =
'none';
Here is the DIV
Processing ...