facelets « Page « JSF Q&A





1. Blank Page in JSF    stackoverflow.com

If my code throws an exception, sometimes - not everytime - the jsf presents a blank page. I´m using facelets for layout. A similar error were reported at this Sun ...

2. Creating an "Edit my Item"-page in Java Server Faces with Facelets    stackoverflow.com

Let's say that you have the following Facelet ( Using Facelets 1.1.12 ):

edit_item.xhtml which i access with edit_item.jsf
Now i have another page sending me to edit_item.jsf with the GET-paremeter ID the ...

3. Replacing JavaServer Faces Error Pages    stackoverflow.com

Is it possible to replace the standard error pages from JavaServer Faces such as 500 Internal Server Error ? These include information such as the stack trace, etc. But for the users, ...

4. How to preserve a object through multiple pages    stackoverflow.com

I have an ArrayList of objects and I use them as follow:

<ui:repeat value="#{BookReview.books}" var="book" >
    <li>
        <h:commandLink value="#{book.bookName}" action="detail" />
  ...

5. Using the same page for creating and editing in JSF 1.2 (Facelets)    stackoverflow.com

Suppose I've got a XHTML page that contains a form for creating a user. There are all necessary fields and a "Save" button. Now in other place of my app there ...

6. How to partition the large JSF pages?    stackoverflow.com

I have one big JSF page containing nearly 1000 lines using normal JSF forms and panelGrids. It would be easier if i keep them in several pages and integrate them as ...

7. how to share a jsf error page between multiple wars    stackoverflow.com

I'm trying to share an error page (error.xhtml) between multiple wars. They are all in a big ear application, and all use a common jar library, where I'd like to put ...