[jboss-user] [JBoss Seam] - EL and an emelemtn out of a LinkedHashSet

tony.herstell@gmail.com do-not-reply at jboss.com
Fri May 4 18:32:16 EDT 2007


  | <!-- Keywords -->
  | <tr>
  | 	<td>
  | 		<h:outputText value="#{messages.no_keywords}" rendered="#{advertisingCampaign.keywords == null}"/>
  | 		<h:dataTable id="resultantKeywordsTable" var="eachResultantKeyword" value="#{advertisingCampaign.keywords}"
  | rendered="#{advertisingCampaign.keywords != null}">
  |   			<h:column>
  |   				<f:facet name="header">
  | 					<h:outputText value="#{messages.label_keywords}" />
  | 				</f:facet>
  |   				<h:outputText value="eachResultantKeyword.keyword"/>
  |   			</h:column>
  | 		</h:dataTable>
  | 	</td>
  | </tr>
  | 

this 
<h:outputText value="eachResultantKeyword.keyword"/>

should be 
<h:outputText value="#{eachResultantKeyword.keyword}"/>

but this does not work:


  | javax.faces.el.PropertyNotFoundException: /WEB-INF/pages/advertisingCampaignWizard/sideProgressMenu.xhtml @316,71 value="#{eachResultantKeyword.keyword}": Bean: java.util.LinkedHashSet, property: keyword
  | 	at com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:58)
  | 

Any suggestions as it does exist...?


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

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



More information about the jboss-user mailing list