Maintain Panel Scroll Position On Partial Postback ASP.NET

前端 未结 3 1700
南笙
南笙 2020-11-28 10:18

I have a gridview that putted in ASP.NET Panel. both of panel and Gridview are in an UpdatePanel. there is a column in gridview that Causes Partial PostBacks. i want to Main

相关标签:
3条回答
  • 2020-11-28 10:30

    There is no built-in facility to resolve it in asp.net

    However, there is a workaround for this problem; You need to handle it with javascript.

    Solution is mentioned here: Maintain Scrollbar Position Inside UpdatePanel After Partial PostBack

    Edited 20-May-2012; after seeing the comments

    <form id="form1" runat="server">
      <asp:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release" />
       <script type="text/javascript">
          // It is important to place this JavaScript code after ScriptManager1
          var xPos, yPos;
          var prm = Sys.WebForms.PageRequestManager.getInstance();
    
          function BeginRequestHandler(sender, args) {
            if ($get('<%=Panel1.ClientID%>') != null) {
              // Get X and Y positions of scrollbar before the partial postback
              xPos = $get('<%=Panel1.ClientID%>').scrollLeft;
              yPos = $get('<%=Panel1.ClientID%>').scrollTop;
            }
         }
    
         function EndRequestHandler(sender, args) {
             if ($get('<%=Panel1.ClientID%>') != null) {
               // Set X and Y positions back to the scrollbar
               // after partial postback
               $get('<%=Panel1.ClientID%>').scrollLeft = xPos;
               $get('<%=Panel1.ClientID%>').scrollTop = yPos;
             }
         }
    
         prm.add_beginRequest(BeginRequestHandler);
         prm.add_endRequest(EndRequestHandler);
     </script>
    
     <asp:UpdatePanel ID="UpdatePanel1" runat="server">
       <ContentTemplate>
         <asp:Panel ID="Panel1" runat="server" Height="300">
            <%-- Some stuff which would cause a partial postback goes here --%>
         </asp:Panel>
       </ContentTemplate>
     </asp:UpdatePanel>
    
    </form>
    

    Below is the code snapshot:-

    Maintain Scrollbar Position Inside UpdatePanel After Partial PostBack

    0 讨论(0)
  • 2020-11-28 10:30

    I was looking for an answer to this problem for several days, using the typical alternative of MaintainScrollPositionOnPostback and the JavaScript solutions using BeginRequestHandler and EndRequestHandler where in my case I use MasterPage.

    Nothing worked, however I came up with a fairly simple solution using jQuery with BeginRequestHandler and EndRequestHandler using the same @waqas-raja algorithm:

    <script type="text/javascript">
    
        var scrollPosition = 0;
    
        $(document).ready(function () {
    
            $(window).scroll(function (event) {
                scrollPosition = $(window).scrollTop();
            });
    
        });
    
    </script>
    
    <script type="text/javascript">
    
        // It is important to place this JavaScript code after ScriptManager1
        var xPos, yPos;
        var prm = Sys.WebForms.PageRequestManager.getInstance();
    
        function BeginRequestHandler(sender, args) {
            console.log('BeginRequest');
        }
    
        function EndRequestHandler(sender, args) {
            $(window).scrollTop(scrollPosition);
        }
    
        prm.add_beginRequest(BeginRequestHandler);
        prm.add_endRequest(EndRequestHandler);
    
    </script>
    

    The idea is to capture the position of the Scroll in a global variable each time the user moves the Scroll, in this way it is known which was the last position and when making the postback the EndRequestHandler event is entered and updated with the last position what the user marked

    This worked for me in Firefox and Google Chrome :)

    0 讨论(0)
  • 2020-11-28 10:38

    Add MaintainScrollPositionOnPostback="true" to your page directive.

    0 讨论(0)
提交回复
热议问题