Skip to main content

Form and Table Page Layout

Now we arrange the form on the page. We want the form to appear to the right of the table. We accomplish this by enclosing the form and tablePane components within an hgroup so that the layout looks like the following:

generated description: layout3

First, surround the <tablePane> and <form> elements with <hgroup></hgroup> tags. Do this by placing an <hgroup> tag immediately before the <tablePane> tag and an </hgroup> tag immediately after the </fieldset> tag.

Second, create some space between the tablePane and form components by adding a spacer component between them. Add the following <spacer> element between the closing </tablePane> tag and the opening <fieldset> tags:

  • <spacer width=".5"/>

FeedbackOpens in a new tab