there is no change. all changes i made are described in my previous post.
After execution of addPCRAnalysis a page is rendered which is the same in both cases. This
facelet is included in the page(only reference to primerlist)
<html
xmlns="http://www.w3.org/1999/xhtml"
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
xmlns:h="http://java.sun.com/jsf/html"
|
xmlns:f="http://java.sun.com/jsf/core">
|
| <f:loadBundle basename="lims" var="bundle" />
| <body>
| <ui:component>
| <h:panelGrid columns="1" styleClass="main"
columnClasses="columnPage">
| <jdt:listPager for="allPrimers" currentStyle="color:
#222222;" />
| <h:dataTable border="1" cellspacing="2"
id="allPrimers"
| value="#{primerlist.primers}" var="zeile"
rows="5">
| <h:column>
| <f:facet name="header">
| <h:outputText value="#{bundle.markername}" />
| </f:facet>
| <h:outputText value="#{zeile.name}" />
| </h:column>
| <h:column>
| <f:facet name="header">
| <h:outputText value="#{bundle.markerproduct_size}" />
| </f:facet>
| <h:outputText value="#{zeile.productSize}" />
| </h:column>
| </h:dataTable>
| </h:panelGrid>
| </ui:component>
| </body>
| </html>
|
The value of the datatable is bound to #{primerlist.primers} and there the exception
occurs.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019440#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...