I am using Appfuse 1.9.4/JSF/DB2. I have a page using JSF tags datatable and commandLink. Everything is fine except that the commandLink within datatable does not fire the action, that is, the review method is never getting called. If I move the commandLink out of the datatable, it is trigging the action. Dose anyone know what the problem is? I use tomahawk's commandLink instead, but it has the same problem. Can someone give me some ideas or pointers? I really appreciate it.
Here is my backing bean: public class RequestDetailsForm { ..... public String review(){ return "some value"; } } Here is my xhtml: <t:dataTable id="tasks" value="#{requestDetailsForm.tasks}" var="task"> <h:column> <h:commandLink action="#{requestDetailsForm.review}" value="#{task.targetPage}"> <f:param name="taskId" value="#{task.id}"/> <f:param name="from" value="task"/> </h:commandLink> </h:column> </t:dataTable> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]