Hi Jeffrey,
you can't bind the 'binding' against a requestParameter, because
binding must evaluate to a UIComponent.
But for value this should do it:
value="LoopID #{param['LoopID']}"
see jsf spec 5.3.1.2.
Regards,
Volker
2007/2/7, Jeffrey Porter <[EMAIL PROTECTED]>:
This is what I'd like to do…
<h:outputText styleClass="smartFont"
binding='LoopID<%=request.getParameter("LoopID")%>' value="awaiting data"/>
But I can't do this, I just get the following error message…
javax.faces.FacesException: ServletException in 'index1.jsp':
ServletException in '/index1.jsp?LoopID=1': not a valid binding:
#<%=request.getParameter("LoopID")%>
Anyone have any ideas?
Jeff Porter