facelet « Control « JSF Q&A





1. using facelet1.1.15 (external facelet) in JSF2    stackoverflow.com

I have upgrated to JSF2 but still running with facelet1.1.15. I have these parameters in web.xml:

<context-param>
    <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
    <param-value>com.sun.facelets.FaceletViewHandler</param-value>
</context-param>
<context-param>
    <param-name>javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER</param-name>
    <param-value>true</param-value>
</context-param>
I ...

2. How to create jsf facelet sections that can be configured at compile time    stackoverflow.com

I need to compose templates/facelet sections, so that individual projects can customize only certain parts of them while retaining immutable corporate standards. The corporate standards could change , and ...

3. Calling parameterized methods from facelet, jsf    stackoverflow.com

I have a nested from which I would like to call a method on my bean, passing the current object in iteration. This method would turn that object into a ...

4. JSF 1.2 - Facelet - CSS has no effect    stackoverflow.com

I created xhtml from HTML mockups. When I applied CSS for h:inputText there is no effect. In Xhtml I have,

<code><h:inputText id="e90" size="29" styleClass="cc22"/></code>
And in external CSS I have,
<code>.cc22    ...

5. jsfc of Facelet    coderanch.com

8. facelet: different css style for ui:define    coderanch.com

ui:define is not a GUI display element, it's a macro definition. So there's no style attached to it, only to whatever GUI content it expands into. Technically, yes, you could define a macro and pass it a parameter which would be referenced in one or more of its expansion elements using an EL expression. In real life, I'd be more likely ...

9. New project using JSF facelet    coderanch.com





10. JSF 1.2 - Facelet - CSS has no effect    coderanch.com