Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<script type="text/javascript">
        Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
        Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
        function BeginRequestHandler(sender, args) {
            Popup.ShowPopup();
        }
        function EndRequestHandler(sender, args) {
            Popup.HidePopup();
        }

        //Set GridPager width corressponding to GridGroupingControl
        Sys.Application.add_load(function () {
            var grid = $get('<%=Me.GridGroupingControl1.ClientID%>' + "~OT~");
            var pager = $get('<%=Me.GridPager1.ClientID%>');
            pager.style.width = (grid.clientWidth - 7) + "px";
        });
    </script>









XML
<Syncfusion:WaitingPopup ID="WaitingPopup1"   ClientObjectId="Popup" runat="server" Alignment="MiddleCentre" AutoFormat="Rollers"
     Height="50px" Width="125px" DisabledBackgroundColor="221, 227, 238" DisableOnShowElementID="GridGroupingControl1" Direction="LeftToRight" TimeSpan="50">
 </Syncfusion:WaitingPopup>






Thanks in advance
Posted
Updated 4-Dec-14 20:12pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900