6 Replies Latest reply on Apr 13, 2007 11:18 AM by sergeysmirnov

    inputText inside a datatable does not get re-rendered

    rooky

      I have a datatable where some fields can be editable depending on the row selection. For example, the comment?s field is editable only for the selected row. Everything works great, except when the information is automatically refreshed.

      
      
      <t:dataTable id="userList" value="#{myBean.employeeList}" var="user">
      
       ....
      
       <t:column>
       <f:facet name="header">
       <t:outputText value="Comments" />
       </f:facet>
       <t:inputText id="comment"
       value="#{user.comment}"
       rendered="${myBean.selectedUser}">
       <a4j:support actionListener="#{myBean.processCommentChange}"
       event="onchange" reRender="userList">
       <f:param name="userId" value="#{user.id}" />
       </a4j:support>
       </t:inputText>
      
       <t:outputText value="#{user.comment}"
       rendered="${myBean.selectedUser}" >
       </t:outputText>
      
       </t:column>
      
       ....
      </t:dataTable>
      
      <a4j:poll interval="30000" reRender="userList"
       actionListener="#{myBean.pollAction}" />
      


      The problem is when my table is re-rendered, the inputText field with the attribute rendered=true (e.i. the comment field that is selected) does not get refreshed. Everything else gets re-rendered correctly. I even tried specifying the comment field to be re-render. E.g.


      <a4j:poll interval="30000" reRender="userList,comment"
       actionListener="#{myBean.pollAction}" />
      



      I am using ajax4jsf 1.1.0 and richfaces 3.0.0