Hi,
I have a small app and would like to use Rich Faces to boost up the UI a bit. I found this component here:
And used this code here:
My problem is I get an error about referencing my bean with #{forecastBean.forecastExtractList}
I can access this bean fine using standard JSF HTML tag library.
What am I doing wrong ?
I have a small app and would like to use Rich Faces to boost up the UI a bit. I found this component here:
And used this code here:
Code:
<f:view>
<ui:composition mlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL]
xmlns:ui="[URL unfurl="true"]http://java.sun.com/jsf/facelets"[/URL]
xmlns:h="[URL unfurl="true"]http://java.sun.com/jsf/html"[/URL]
xmlns:f="[URL unfurl="true"]http://java.sun.com/jsf/core"[/URL]
xmlns:a4j="[URL unfurl="true"]http://richfaces.org/a4j"[/URL]
xmlns:rich="[URL unfurl="true"]http://richfaces.org/rich">[/URL]
<h:form>
<h:panelGrid columns="2" columnClasses="top,top">
<rich:extendedDataTable value="#{forecastBean.forecastExtractList}"
var="fcastTbl"
id="table"
width="580px"
height="400px">
<rich:column sortable="false" label="Flag">
<f:facet name="header">
<h:outputText value="Flag"/>
</f:facet>
<h:graphicImage value="#{fcastTbl.productId}"/>
</rich:column>
</rich:extendedDataTable>
</h:panelGrid>
</h:form>
</ui:composition>
</f:view>
My problem is I get an error about referencing my bean with #{forecastBean.forecastExtractList}
I can access this bean fine using standard JSF HTML tag library.
What am I doing wrong ?