2 Replies Latest reply on Mar 2, 2011 6:49 AM by ilya_shaikovsky

    Problems with extendedDataTable header facets + input fields in firefox

    psh

      Hi All,

      Using richfaces 4 M6 I experience a strange problem using an input field in a header facet in firefox (3.6.13): the input field is not accessible.

      When disabling javascript it will work, but there are no errors at the console. It also helps just to dummy-modify an tbody element in firebug (edit-HTML -> just remove a character and add it again).

      Here is some code that might reproduce the problem, can someone confirm this behavior?

       

      <h:body>
          <h:form id="mf">
              <rich:extendedDataTable id="bl" var="sub" value="#{bean.dataModel}" rows="2">
                  <rich:column width="30%">
                      <f:facet name="header">
                          <h:panelGroup id="pg">
                              <h:outputText value="Name " /><br/>
                              <h:inputText value="#{bean.dataModel.filterName}" id="intab" />
                          </h:panelGroup>
                      </f:facet>
                      <h:outputText value="#{sub.name}"/>
                  </rich:column>
              </rich:extendedDataTable>
      ...
      

       

      IE7 seems to work just fine.

      Thanks,

      Peter