Hi,

Does anybody know if the following is valid :

<h:form>

<h:dataTable value="#{teamsManager.scheduleList}" var="mySchedule" rows="0" width="100%">

 <h:column>

<h:commandLink action="TeamHome" actionListener="#{teamsManager.teamHomeEvent}">
         <h:outputText value="#{mySchedule.opponent}" escape="false"/>
         <f:param name="myTeamId" value="#{mySchedule.opponentId}"/>
     </h:commandLink>

 </h:column>

</h:dataTable>

</h:form>


The backing bean "teamsManager" is in request scope ... the actionListener in the commandLink within the dataTable does not get invoked. The same commandLink outside of a dataTable works fine.

I am converting my application from struts/tiles to myfaces/tiles ... I was initially converting it to RI/tiles but, RI had the same problem.

Any help would be appreciated.

Thanks,
Lou


Reply via email to