"Previous" or "Next" Nav Buttons - Can user view TOP of table instead of bottom when pressing them?
"Previous" or "Next" Nav Buttons - Can user view TOP of table instead of bottom when pressing them?
trprod
Posts: 2Questions: 1Answers: 0
I have a user that is unhappy when he presses the navigation buttons on the bottom, and he has to scroll to top of the table. Is there a way to allow the user to go to the top of the table?
This discussion has been closed.
Answers
You'd need to add an event listener to the
page
event that would move the page's scrolling back to the top of the table. There isn't a built in way of doing that.Allan
Allan - Thanks, I am a total neophyte.(but can follow instructions) And your solution may be beyond my pay grade. Can you tell me how to add an event listener to the page event?
Have a look at the bottom of the
page
event documentation I linked to above. There is an example of how to use it there.Allan