commandLink inside dataTable issue - Urgent.
I have some weird issue using commandLInk inside dataTable.
Here is my code
/***********************************************
<h:dataTable id="productTable" var="productBean"
value="#{productSearch.searchResult}" rendered="#{!empty productSearch.searchResult}" >
<h:column>
<h:commandLink id="searchtitle"
value="#{productBean.productName}" action="#{productSearch.productDetail}" />
</h:column>
</h:dataTable>
******************************************************/
when i click the commandLink always productSearch.searchResult method is being called and commandLink action productSearch.productDetail method is not being executed atALL.
How do i forice to execute action here?

