To process the user's entry, you can use the href or Submit Program:Submit Function settings.
If you provide an href setting for the input control: When the user enters a value and clicks the command button, the system
submits the page to the href URL, to the target location. The submit
actions posts this data to the href URL:
- The names and values of all HTML input controls in the toolbar menus
- All request parameters that were passed to the main page
- For a flat table or structure browser, the timestamp to allow the
processing JSP to retrieve data specific to the table (such as object
IDs)
If the href calls a JSP, use emxGetParameter(request,<commandName>)
to get the textbox value.
If the href calls javascript, use document.getElementById(<commandName>).value
to get the textbox value.
If you provide an Submit Program:Submit Function setting for the input control: Write a JPO:method to process the values from one or more input
controls.