1 Reply Latest reply on Apr 1, 2009 11:17 PM by cash1981

    Query reg dataTable

      I'am using h:dataTable to get the data on the UI. The code looks like below

      <h:column>
         <h:commandLink action="claimControlBean.howtoProcess"
            title="hold2" target="_blank">
         <h:outputText  id="holdReason"   
           value="{#holds.holdReason}">
         </h:outputText></h:commandLink>
      </h:column>

      I'am getting the data that I need on the UI. Now whenever user clicks on the above commandLink, I need to pass the value of holds.holdReason of that particular row/instant to the Backing Bean. How could I do that?

      Thanks