I have a GridView control in a aspx page to display and edit, delete adn add rows to a database. This GridView has 100 rows and using JQuery I am able to scroll down while the Heading is still showing.
When I edit a row whitout scrolling to the last row in the GridView ( say 2nd row ), the post back shows the text box etc...
But when I want to edit the last row (say row 100) on GridView ( after scrolling down to the 100th row ) , when I click the edit , the postback goes back to the begining of the GridView and I can see the editing row, I have scroll down to see the text
box to edit the row textbox etc.
How do I keep the scrollposition after postback so that the row I am editing appears on the page ( without me scrolling down to see the editing row ).
My Jawascript/Jquery for Gridview scroll function with fixed header is
<link href="../styles/GridviewScroll.css" rel="styleshee ...
Go to the complete details ...