gostaria de saber se quem já trabalhou com <rich:scrollableDataTable> conseguiu colocar um h:commandLink em uma das colunas
<rich:scrollableDataTable id=“dataTable” binding="#{historicDetailed.dataTable}" var=“u” cellspacing=“0”
styleClass=“tableDiv” height=“275px” columnClasses=“tableMyHV”
rowClasses=“tableRowEven, tableRowOdd”
value="#{historicDetailed.listView}">
.
.
.
<rich:column width=“50px”>
<f:facet name=“header”>
<h:outputText value="#{bundle.detail}" />
</f:facet>
<h:commandLink immediate=“true” value=“show” action="#{historicDetailed.show}">
</h:commandLink>
</rich:column>
</rich:scrollableDataTable>
ele nao esta batendo no meu bean historicDetailed, no método show, que retorna uma String
obs: meu bean já esta em escopo de sessao