I am getting the following error in Tomahawk 1.1.3-SNAPSHOT (Build 26
20060525230507). This
error does not occur when running Tomahawk 1.1.2. In both cases the MyFaces
version is 1.1.3
ERROR - Row is not available. Rowindex = 2
WARN - HTML nesting warning on closing tbody: element tr rendered by component
: {Component-Path :
[Class: javax.faces.component.UIViewRoot,ViewId: /mpr_results.jsp]
[Class: javax.faces.component.html.HtmlForm,Id: _idJsp31]
[Class: org.apache.myfaces.component.html.ext.HtmlDataTable,Id: data]} not
explicitly closed
Two rows in the table are displayed, which is the correct number of expected
rows in the table.
Below is an excerpt of the JSP.
<t:dataTable id="data"
value="#{mprQueryManager.resultData}"
var="rowVar" border="1"
rows="#{mprQueryManager.dataRowsPerPage}"
preserveDataModel="false"
rowOnMouseOver="this.style.backgroundColor='#A5CBFF'"
rowOnMouseOut="this.style.backgroundColor='inherit'"
styleClass="dataTable" width="100%">
<h:column>
....
</t:dataTable>
<t:dataScroller for="data"
fastStep="10"
styleClass="scroller"
paginator="true"
paginatorMaxPages="9"
paginatorTableClass="paginator"
paginatorActiveColumnStyle="font-weight: bold;"
renderFacetsIfSinglePage="false">
...
</t:dataScroller>
Paul Spencer