Render « Facelets « JSF Q&A





1. Facelets custom tag not rendering    stackoverflow.com

I am trying to create a custom tag with Facelets but it isn't rendering (i.e. the tag appears unreplaced in the response). The tag (/WEB-INF/facelets/tags/inputThumbnailSelector.xhtml):

<html xmlns="http://www.w3.org/1999/xhtml"
   ...

2. How to render based on conditions in facelets?    stackoverflow.com

I am using JSF 1.2 + Facelets + Apache My Faces without Tomahawk or other libs. I use a customized container. I have a scenario to implement but I am not ...

3. JSF tags not rendered    stackoverflow.com

I am new to JSF, but my JSF tags are not rendered in xhtml file, i tried out every possible solution, but problem is not solved my web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" ...

4. JSF Facelets rendering problem    stackoverflow.com

I have a problem with my facelets: I constricted a nav part that displays login information for about curren user and a logout button. Login works properly. But after a user ...

5. Can you cascade ajax rendered content in JSF 2.0?    stackoverflow.com

Example:

<h:form>
  <h:commandLink action="#{someBean.someAction}">
    <f:ajax render="somePanel"/>
  </h:commandLink>
  <h:panelGroup id="somePanel">
    <h:commandLink action="#{someBean.otherAction}">
      <f:ajax render="otherPanel">
    </h:commandLink>
  ...

6. Does JSF 2.0 strip out HTML attributes when rendering?    stackoverflow.com

I have to work with existing HTML and CSS and convert it to JSF app. So there are pure <li> elements (no JSF tags) with class="" attributes. When rendered with JSF ...

7. how: Partial Rage Rendering with jsp2/facelets/templating with menu driving main content refresh only?    stackoverflow.com

I found some posts by BalusC (big fan of urs) and others here on stack overflow and haven't found the solution, which would seem like something many would want to be ...

8. ui:fragment rendered attribute not working after upgrading Facelets to JSF 2    stackoverflow.com

I am upgrading a project from JSF1.2/Facelets1.1 to JSF2.1 with built in facelets. The following no longer works and I don't know why. Both ui:fragments apparently evaluate to true, ...

9.  does not render at all    stackoverflow.com

This is my Facelet:

<h:inputText id="input" value="#{managedBean.runner.postnr}" maxlength="4" size="4">
    <f:ajax execute="@this" onevent="blur" render="output" />
</h:inputText>
<h:outputText id="output" value="#{managedBean.placeFromPostNR}"/>
I'm trying to autoupdate outputText with a value from managedBean.placeFromPostNRwhen the user exit's the ...





10. Problem rendering facelets templates    coderanch.com