Hi,

I've noticed that wicket is renaming my form id, which has become problematic 
when our JavaScript developer makes use of the id for some of his behaviors. Is 
there a way to tell Wicket to preserve the form id in the HTML page?

Here's what I'm doing:

HTML:
          <form wicket:id="step_1" id="step_1">
          ...
          </form>

Java:
        final Form<Quote> form = new Form<Quote>( "step_1", new 
CompoundPropertyModel<Quote>( quote ) );


And the resultant HTML file reads as follows:
<form wicket:id="step_1" id="step__15" method="post" 
action="?wicket:interface=:2:step_1::IFormSubmitListener::"><div 
style="display:none"><input type="hidden" name="step__15_hf_0" 
id="step__15_hf_0" /></div>
          ....

Thanks in advance for your help!
Steve

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to