Element
|
Type
|
Description
|
---|---|---|
<MyTableBuilder.java>
|
Java class
|
This file defines the table that appears in your application's wizard. You will modify this class to include definitions for hidden table columns for which the server will provide default values. This element is optional, and is not required if your application does not need per-table-row hidden values.
|
<MyScript.js>
|
JavaScript
|
This file will contain your application's client-side logic that adds, modifies, or removes hidden inputs from the form data submitted to the server.
|
<MyWizard.jsp>
|
JSP
|
This file defines your wizard's page. You will modify this file to include a <script/> block that loads your JavaScript file containing the logic to manipulate the hidden data elements.
|
<MyFormProcessor.java>
|
Java class
|
This file will contain your application's form processor for the form data sent by the wizard to the server. In this class you will extract and process the hidden data that was generated or manipulated by your client-side JavaScript logic.
|