2 Replies Latest reply on Jan 25, 2008 7:09 AM by flokati

    How to reRender a h:inputText-Field?

    flokati

      Hi!

      I have a rich:dataTable:

      <rich:dataTable id="activationSequenceEditorTable" value="" var="">
       <rich:column>
       <h:outputText value="Name:" />
       </rich:column>
       <rich:column>
       <h:outputText value="#{viewBean.activationSequence.name}" />
       </rich:column>
       <rich:column breakBefore="true">
       <h:outputText value="Description:" />
       </rich:column>
       <rich:column>
       <h:inputText value="#{viewBean.activationSequence.description}" id="blubb"/>
       </rich:column>
       <rich:column breakBefore="true">
       </rich:column>
       <rich:column>
       <h:commandButton action="alert('TODO');" value="Save" />
       </rich:column>
       </rich:dataTable>


      When I do a reRender of the Table, the h:outputText will be updated, but not the h:inputText.
      After pushing the Save-Button the new Description appears in the inputText.