6 Replies Latest reply on Apr 11, 2011 9:06 AM by jmiazga

    inplaceInput in an extendedDataTable column disappears when there is no value

    jmiazga

      I am currently on Richfaces 4 Milestone 6.  The following code is being used to generate the extendedDataTable and its contents:

       

       

      {code:xml}<rich:extendedDataTable value="#{table.getRows()}"

        var="row" columnClasses="col-left col-right">

       

       

        <f:facet name="header">

             <h:outputText value="Table" />

        </f:facet>

       

       

        <rich:column label="desc">

             <h:outputText value="#{row.getDescription())}" />

        </rich:column>

       

       

        <rich:column label="value">

             <rich:inplaceInput value="#{row.getValue()}" />

        </rich:column>

       

       

        </rich:extendedDataTable>{code}

       

      The table and its values are populated correctly.  The problem is when the value in the inplaceInput is replaced with a space, the inplaceInput box disappears and can not be selected again.  This seems similar to https://issues.jboss.org/browse/RF-3761.  Should I submit a bug for this?