Advertisement
Guest User

Untitled

a guest
Jul 6th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. ...
  2. <h:dataTable value="#{adressTableBeanExample1.addresses}" var="address">
  3. ...
  4. <h:column>
  5. <h:commandButton value="delete" action="#{adressTableBeanExample1.delete(address)}"/>
  6. </h:column>
  7. </h:dataTable>
  8. ...
  9.  
  10. ...
  11. public String delete(Address toDelete){
  12. addresses.remove(toDelete);
  13. return "";
  14. }
  15. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement