>From the wicket java docs for property model, it says:

...we can create form components that work dynamically on the given model
object. For instance, we could create a text field that updates the name
property of a person like this: 

     add(new TextField("myTextField", new PropertyModel(person, "name"));

My question is:
How does the text field update the name field in the person object? Is it
built in on "onsubmit" or some function inside the TextField class?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/updating-a-property-model-tp3685186p3685186.html
Sent from the Users forum mailing list archive at Nabble.com.

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

Reply via email to