anonymous wrote : The question is, how do i reference a single streetaddress 
from within a JSF Page ?

If you know which one try:

#{contact.streetAddresses[10].zip}

Or, iterate over them in a datatable.

anonymous wrote :  and how do i add new streetadresses to contact ?

You need a method on your backing (action) bean like

public void addStreetAddress() {
  |    contact.addStreetAddress(new StreetAddress());
  | }

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4124730#4124730

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4124730
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to