h:commandLink is not working within h:dataTable
Hi,
In my xhtml page, i am using h:dataTable like this,
After clicking Search button, i will get list of patients based on FirstName and LastName.
<h:inputText value="#{pmsPatientWebGuiListBean.firstName}" />
<h:inputText value="#{pmsPatientWebGuiListBean.lastName}" />
<h:commandButton value="Search"
action="#{pmsPatientWebGuiListBean.searchPatient}"/>
<h:dataTable id="adresstable"
value="#{pmsPatientWebGuiListBean.pmsPatients}"
var="patient">
<h:column id="firstname">
<f:facet name="header">
<h:outputText value="First Name" />
</f:facet>
<h:commandLink action="#{pmsPatientWebGuiListBean.select}" >
<h:outputText value="#{patient.firstName}" />
</h:commandLink>
</h:column>
</h:dataTable>
but when i click command link of first name, its not goint to #{pmsPatientWebGuiListBean.select} action.
How to resolve this,
Thanks,
Vinutha.

