I have a Woodstock table component and the first column should be a hyperlink. However, I am unable to call the backing bean action method on it and am stumped.
The faces-config is fine because If I move the hyperlink outside of the table it works...any idea what I am missing here? Thx!
<webuijsf:table augmentTitle="false" binding="#{Search.searchResultsTable}" id="searchResultsTable"> <webuijsf:tableRowGroup binding="#{Search.tableRo wGroup1}" id="tableRowGroup1" rows="10" sourceData="#{Search.searchResultCollection}" sourceVar="currentRow"> <webuijsf:tableColumn binding="#{Search.columnSubmissionType}" headerText="Call Action" id="columnSubType"> <webuijsf:hyperlink actionExpression="#{fragments$search$Search.accessAction}" binding="#{Search.hyperlink1}" id="hyperlink1" text="#{currentRow.value['subType']}"/> </webuijsf:tableColumn> </webuijsf:tableRowGroup> </webuijsf:table>