Details
Description
On a paginated grid/form which extends CommonDynamicGrid/CommonDynamicForm, with ajaxEnabled=true, the framework builds an input allowing user to jump to a specific page number.
This input gets a onchange event that triggers a request for the content of the target page, but the VIEW_INDEX parameter is off by one : when asking for page 6 we fetch the content of page 5 (page numbers are zero-indexed, so the value entered by the user should be decremented) :
In this screenshot, the VIEW_INDEX should be set to "this.value - 1", just like the non AJAX pagination widget does :