0 Replies Latest reply on Jul 5, 2016 12:19 PM by sahithiy

    value is not displayed using h:inputText for data table row

    sahithiy

      We are migrating from richfaces 3.3.3 to 4.5.13 and jsf 1.2 to 2.0

       

      We have a datatable on which we have to perform row click. On rowclick a grid appears after the datatable with all the information of clicked row.

       

      We were using <a4j:support event="rowclick"> inside datatable before.

       

      As we are unable to use it in 4.x we are using workaround mentioned here - https://issues.jboss.org/browse/RF-13165

       

      Now we are able to perform rowclick, but the we are unable to display the selected row value using h:inputText.

       

      <h:inputText value="#{car.name}"> is not displaying the value.

       

      We are able to display the same value using  #{car.name} and  <h:outputText value="#{car.name}">


      I see [RF-13165] The rowclick event of the rich:dataTable is not recognized as a valid server-side event during an ajax postba… is resolved in 4.5.13. If it is resolved, can someone provide example on how to use this.