Bernard wrote > Hi, > > Perhaps you can use a combination of what is avaliable in the javadoc > of org.apache.wicket.markup.html.form.Form e.g. > FormComponent#updateModel()
That ALMOST works. The javadoc for updateModel says it assumes that convertInput() has been called. But convertInput() is protected, and invoked when you validate(). Now as it turns out, the specific component I am working on doesn't have any component level validation (the validation i was avoiding was form level), so i can call validate() then updateModel() and that works for me in this particular case. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/setDefaultFormProcessing-and-models-tp4657804p4657816.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
