Keeping the scroll position in the browser between requests.
Usage of this package
A jsp page typically consists of one or more HTML forms that contain WCF components like trees and tables. Some user actions like expanding a tree node or sorting a table column do support keeping the current scroll position.WCF demo pages contain the necessary code. For new jsp pages take the following steps
public void handleRequest(RequestContext context) { Scroller.enableScroller(context); ... }This ensures that the browser will keep it's scroll position after the request is finished.