I want to create a subclass of Form and add <table> and </table> nested
inside of the form. I tried onComponentTagBody(), but Form adds a
hidden field at the top of a form, and when I put that inside my table,
I get a NullPointerException in some cases.
Does anyone have a suggest for how to insert a <table> tag as the first
item before any components that were added to the Form, but after the
hidden fields that Form adds? I basically want to render the following:
<form> <div hidden><input wicket hidden stuff></div>
<table>
...
<FormComponents>
...
</table>
</form>
Thanks for any help!
-Clay