> o) I also found that this only happens when the markup looks like this, > i.e. the form is inside the table (See HomePage.html): > > <table> > <form wicket:id="form"> > ... > </form> > </table> > > ...but not when the form is outside (see WorkingPage.html) > > <form wicket:id="form"> > <table> > ... > </table> > </form> > > The first markup would be preferred so that the existing values line up > nicely with the form fields.
<form> is not allowed to be in table, see https://developer.mozilla.org/en/docs/Web/HTML/Element/table You are still building html, it has to be (mostly) valid Kind regards --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
