I have knowledgde of Servlets, JSP and JSF, and reading a bit about Wicket.

Something that turns me immediately off is that you have to use something
like
add(new Label("firstName", person.getName()));
add(new Label("lastName", person.getName()));
add(new Label("address", person.getAdress()));
add(new Label("postalcode", person.getPostalcode()));
etc....
to send data to the view. Which is a lot of hardcoded duplicated property
mapping code.

Isn't it possible to just send the whole person object to the view, just
like in JSP, JSF, Facelets? Instead of manally putting all person bean using
the add-method.

-- 
View this message in context: 
http://www.nabble.com/Bean-properties-from-view--tp17633058p17633058.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to