wicket rewriting name attributes in form

2009-08-06 Thread Bas Vroling
I have written an wicket page that collects some user input and calculates values. These values need to be sent to an external python script that does something with this data and renders a results page. This almost works fine but wicket messes up my form. In the HTML template I have

Re: wicket rewriting name attributes in form

2009-08-06 Thread Erik van Oosten
Hi Bas, Wicket needs to write a generated name attribute so that it knows exactly which value comes back from the client. But since you're not posting to the server but to some other script, why bother with using Wicket components? Just use the raw html, and if you must use Label and

Re: wicket rewriting name attributes in form

2009-08-06 Thread Bas Vroling
Ok, that makes sense. However, I need the wicket stuff to have the calculated parameters appear in the the submission form. So how would I get these values in the form with labels and WebMarkupContainers? On 6 Aug, at 11:16, Erik van Oosten wrote: Hi Bas, Wicket needs to write a generated

Re: wicket rewriting name attributes in form

2009-08-06 Thread Martijn Dashorst
new AttributeModifier(value, true, model) Martijn On Thu, Aug 6, 2009 at 11:24 AM, Bas Vrolingbvrol...@cmbi.ru.nl wrote: Ok, that makes sense. However, I need the wicket stuff to have the calculated parameters appear in the the submission form. So how would I get these values in the form with

Re: wicket rewriting name attributes in form

2009-08-06 Thread Alex Objelean
? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/wicket-rewriting-name-attributes-in-form