Looks like simple,but doesn't work)
When .jsf page is loaded ,values from DB is shown.
dao impl chunk:
public List<Product> getProducts() {
return getHibernateTemplate().find("from Product");
}
managed bean chunk:
public List<Product> getProducts() {
return this.getProductManager().getProducts();
}
I intented,that f:ajax does this work by click only:
<h:form>
<h:commandLink value="show" action="nothing">
<f:ajax render="pr"/>
</h:commandLink>
<h:dataTable var="product" id="pr" value="#{showProducts.products}">
<h:column>#{product.name}</h:column>
</h:dataTable>
</h:form>
And the data is visible on page,when it's loaded. With Firebug I can see,that data is refreshed by click, so ajax does it's work.
Do I need additional attributes for h:dataTable element for table content to be displayed on click only?
Thank you.