Ho do I do that?

  • Thread starter Thread starter Ather Ali Shaikh
  • Start date Start date
A

Ather Ali Shaikh

Hello All,
I have 5 or 6 User Controls on my page loading dynamically.
All these controls have a grid control with naviagtion Next and Previous.
When I click Next or previous of the last control, the grid goes to next
other records.

BUT

The page scrolls up. How do I set the location of the page to that control.

Regards
Ather Ali Shaikh
 
Well, a DataGrid is rendered on the client as a <table> object, and you
could use some javascript to call the scrollIntoView method on that object.
 
Back
Top