[jboss-user] [JBoss Seam] - Re: DataModel/dataTable for rendering 2 tables

trickyvail do-not-reply at jboss.com
Mon Oct 8 10:28:35 EDT 2007


I think you are trying to call getMls() on the listings collection inside Sellers. The collection does not have this method. You will first need to use a jsf iteration tag like h:dataTable, ui:repeat or rich:dataTable. Something like this:
<ui:repeat value=#{somebean.sellers} var="seller">
  |     <h:outputText value="#{seller.name}">
  |     <ui:repeat value="#{seller.listings}" var="listing">
  |         <h:outputText value="#{listing.mls}"/>
  |     </ui:repeat>
  | </ui:repeat>

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

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4092585



More information about the jboss-user mailing list