Hello,
I'm novice with hibernate, and now I've got a problem showing some items from my table. I've this:
<h:dataTable value="#{agenda.filmTitles}" var="item" border="0" cellpadding="2" cellspacing="0" rowClasses="jsfcrud_odd_row,jsfcrud_even_row" rules="all" style="border:solid 1px"> <h:column> <f:facet name="header"> <h:outputText value="Title"/> </f:facet> <h:outputText value="#{item.nombre}"/> </h:column>
Is item.nombre... nombre an identificator from the table? If that's true, I don't understand why I don't see any record.
Thank you.
Jordi Maicas.
|