Hi :) Does EL enhancements work in Seam 1.2.1? Because i'm trying to make this 
code work:
The XHTML file:

  | [...]
  | <h:dataTable id="projectPlanList" var="pp"
  |             value="#{projectPlanList.resultList}" 
  |             rendered="#{not empty projectPlanList.resultList}">
  |         <h:column>
  |             <f:facet name="header">Id</f:facet>
  |             #{pp.id}
  |         </h:column>
  |         <h:column>
  |             <f:facet name="header">Name</f:facet>
  |             <s:link id="pp" value="#{pp.name}" 
action="#{projectPlanHome.edit(pp.id)}"/>
  |         </h:column>
  |     </h:dataTable>
  | [...]
  | 
And the code of the JavaBean

  | [...]
  | public String edit(Long id){
  |             projectPlanId = id;
  |             return "/project-plan.xhtml";
  |     }
  | [...]
  | 
I'm debugging it, but inside the method the id variable always is null. Am I 
missing something? Thanks :)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4044384
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to