Javascript keyDownPaging - jcobban/Genealogy GitHub Wiki

function keyDownPaging(event)

Up: Javascript Programming Guide

Source: /jscripts/util.js

The function implements those special keystroke events that are supported on all pages. In particular it displays the menu if the user presses the F10 key or uses Ctrl-F, and it supports the pageDown and pageUp keystrokes on all pages that support multi-page displays.

There are many dialogs on the site which support browsing through large tables or other large responses from searching tables by displaying a page of information at a time with a header above the displayed portion of the table which provides clickable links for moving forward or back through the response:

Browsing Through Tables

On these pages the pageDown key performs the same action as clicking on the left arrow (<--) link and the pageUp key performs the same action as clicking on the right arrow (-->) link.

Next: function keyDownMenu(event)