Challenge Overview
This component is required for an IBM internal application. The DST Web Engagement Form Tool is a web application that uses WebSphere Application Server and DB2 running on Linux. The tool uses the Struts framework and Java 1.5.
The purpose of this component production is to take 1 JSP and implement a paging feature to eliminate the full “fetch” of engagement forms that are displayed. This 1 JSP has 3 different AJAX/DOJO tabs and paging must be implemented on all 3 tabs within the same page.
The paging feature allows for the web user to select the number of engagement forms (records) should be displayed on the screen (independently for each tab). The valid values are: 10 (default), 50, 100, All.
This component details the changes necessary to achieve this paging.
Conventions:
When referring to bean properties in this component, the standard bean dot notation is used in lieu of quoting the actually get/set methods. So instead of having
initiationResponse.getProblem().getId()
We will write
initiationResponse.problem.id
Final Submission Guidelines
N/A