Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 25th, 2012  |  syntax: None  |  size: 0.70 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. JSF Datatable with two columns
  2. <h:form id="productsBox">
  3.             <h:dataTable var="product" value="#{categoriesBean.category.products}" id="productsTable">
  4.                 <h:column id="product">
  5.                         <img id="img" src="C:/upload/Jellyfish_231834557726756606.jpg" />
  6.                         <h:outputText id="name" value=" #{product.name}" />
  7.                         <h:outputText id="price" value=" #{product.price}" />
  8.                         <h:commandButton id="addToCart" value="Add to cart" action="#{shoppingCartBean.addProduct(product)}">
  9.                         </h:commandButton>
  10.                 </h:column>
  11.             </h:dataTable>
  12.             </h:dataTable>
  13.         </h:form>