outputText « IceFaces « JSF Q&A





2. Inplace outputText / inputText    icefaces.org

3. Display HTML in outputText...    icefaces.org

4. [SOLVED] Different behaviour of outputText and inputText    icefaces.org

mport javax.faces.event.ValueChangeEvent; import azk.dataexchange.PortletSessionUtil; import com.icesoft.faces.async.render.OnDemandRenderer; import com.icesoft.faces.async.render.RenderManager; import com.icesoft.faces.async.render.Renderable; import com.icesoft.faces.context.DisposableBean; import com.icesoft.faces.webapp.xmlhttp.PersistentFacesState; import com.icesoft.faces.webapp.xmlhttp.RenderingException; public class CompanySelectedModel implements DisposableBean,Renderable { private static final String COMPANY_RENDER_GROUP = "COMPANY_RENDER_GROUP"; private PersistentFacesState _persistentFacesState; private RenderManager _renderManager; public CompanySelectedModel() { _persistentFacesState=PersistentFacesState.getInstance(); } public RenderManager getRenderManager() { return _renderManager; } public void setRenderManager(RenderManager manager) { _renderManager = manager; OnDemandRenderer onDemandRenderer = getRenderManager().getOnDemandRenderer(COMPANY_RENDER_GROUP); onDemandRenderer.add(this); } ...

5. "
" in ice:outputText
    icefaces.org

well...when i do it this way, i get an exception... Code: HTTP ERROR: 500 javax.faces.FacesException: org.xml.sax.SAXParseException: The value of attribute "value" associated with an element type "ice:outputText" must not contain the '<' character. RequestURI=/Konfigurator/konfiguratorIndex.jspx Caused by: java.lang.Exception: javax.faces.FacesException: org.xml.sax.SAXParseException: The value of attribute "value" associated with an element type "ice:outputText" must not contain the '<' character. at com.icesoft.faces.context.View.servePage(View.java:142) at com.icesoft.faces.webapp.http.core.SingleViewServer.service(SingleViewServer.java:52) at ...





13. ice:outputText vs h:outputText vs straightforward text    icefaces.org

I'm not an expert here but I know some of the answers. 1) Untagged text is fine for most uses -- I notice many of the examples using it. However if you use the outputText tags you have access to the XML attributes those tags offer, such as id= and rendered= 2) The ice: form adds a few attributes that the ...

14. surrounding outputText with a

Hello, Using Glassfish v3 and icefaces2.0 with 1.8 component compatibility, I had problems with the following xhtml snippet from within an h:dataTable:

With the
around the outputText inside the facet my page will render but as soon as I try to do anything else (scroll or navigate ...

15. Problem with outputText styleclasses    icefaces.org

Hello, I am new to ICEFaces, and need help. The outputText component is not allowing me to change the text color using styleclasses. I am in the process of converting woodstock component based pages to ICEFaces, but am unable to get the outputText components to accept the colors defined in styleclasses in our custom stylesheet. These classes contain nothing but the ...





19.  does not refresh itself but does.    icefaces.org

thanks wouedmouss, it works. a further question for you is that if i've got quite many inputs, it could be quite much work to set every value in the bean class. and if an input should be added or dropped, the bean class must be changed accordingly. is there any easier way to let all these inputs know that they should ...

20. ice:outputText Bug?    icefaces.org

Hi everybody, I recognized a very strange behaviour of the outputText component. When I use this JSF code i always get an diplicate error or ... 17:27:08,590 ERROR [Parser] Failed to execute JSP lifecycle. java.lang.IllegalStateException: Duplicate component ID : ...

21. Whitespace in outputText    icefaces.org

22. display special entity name in outputText    icefaces.org

When trying to display currency symbol in outputText component using the following entity: & pound ; & yen ; & euro ; the symbols (, , ) does not show up, but rather the actual value (e.g. & pound ;) shows up. What is the solution to display the actual symbols using outputText component?

23. Change an outputText display    icefaces.org