2 Replies Latest reply on Jun 9, 2010 2:29 AM by ilya_shaikovsky

    Unspecified error on IE8 when rendring rich:scrollableDataTable

      Hi All,

       

      I am getting javascript error on redering rich:scrollableDataTable in IE8. It works with mozilla and chrome.

       

      I have an refresh button which will refresh the scrollable data table.

       

      Here is my xhtml code for scrollable data table:

       

      <h:panelGroup>

      <rich:scrollableDataTable id="previewMappedDataTable" var="cst"

      value="#{bulkRegistrationController.importFileRecords}"

      height="200px" width="1100px" sortMode="single"

      binding="#{previewMappedDataTable}"

      selection="#{bulkRegistrationController.selection}">

      <rich:columns

      id="#{column.bulkRegistrationMetadataColumnId.columnName}"

      sortable="true"

      value="#{bulkRegistrationController.previewMappedHeaderList}"

      var="column" index="ind" width="100px"

      sortBy="#{cst[column.bulkRegistrationMetadataColumnId.columnName]}">

      <f:facet name="header">

      <h:outputText

      value="#{column.bulkRegistrationMetadataColumnId.columnDesc}" />

      </f:facet>

      h:outputText

      value="#{cst[column.bulkRegistrationMetadataColumnId.columnName]}" />

      </rich:columns>

      </rich:scrollableDataTable>

      </h:panelGroup>

      <h:panelGroup>
      <h:panelGrid columns="1" styleClass="csListButtons">
      <a4j:commandButton value="Refresh" status="waitStatus"
      id="refreshButton" styleClass="csListButton"
      reRender="previewMappingForm" action="#{bulkRegistrationController.previewMapping()}" />
      </h:panelGrid>
      </h:panelGroup>

       

       

       

       

      Am I missing something here?

       

      Thanks in advance.

       

      Atish