Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using RichFaces for web project

Status
Not open for further replies.

Exie

Programmer
Sep 3, 2003
156
AU
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:
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 ?
 
Sorry, to clarify the above question... this is the error I get:

org.apache.jasper.JasperException: /list.jsp(40,38) PWC6228: #{...} not allowed in a template text body.

I'm not sure what this means....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top