Tagged Questions

Facelets is an XML-based view technology for the JavaServer Faces framework.

learn more… | top users | synonyms

13
votes
4answers
3k views

Is it possible to use JSF+Facelets with HTML 4/5?

Facelets relies on XML namespaces to work with XHTML. How are HTML 4, and as far as I know, HTML 5 do not support namespaces. Also HTML 5 has some new elements that are not available in XHTML. Even ...
11
votes
1answer
2k views

Should I use Facelets “jsfc” attribute?

Facelets uses the jsfc attribute to convert HTML elements to their associated JSF components. This is rather helpful for fast prototyping as it allows you to create your views using a visual design ...
10
votes
3answers
2k views

Trouble with Primefaces 3.0.M2 SelectOneMenu Ajax behavior

I am having trouble with implementing two SelectOneMenu controls, where data in the second one depends on the selection made in the first. This example on the primeFaces showcase is almost the same as ...
10
votes
4answers
14k views

Eclipse autocomplete (content assist) with facelets (jsf) and xhtml

How to activate eclipse (3.5, WTP) content assist in .xhtml pages for JSF (1.2) tags, using facelets? It works in .jsp files, but not xhtml. I google a lot, and in many places (including MyFaces ...
9
votes
5answers
2k views

Retrieve the fragment (hash) from a URL and inject the values into the bean

I am looking for a way to inject values from the fragment (#) of a URL into bean(JSF), in the same way query-parameter values are injected. I am using Ben Alman's Bookmarkable jQuery plugin ...
9
votes
1answer
3k views

What are the differences between JSP and Facelets?

I'm new to Web Development, so please be patient with me. This might be a dumb question, but I need to get these terms clear in my head! I just started reading the Java EE 6 Tutorial, and I'm a ...
9
votes
5answers
53k views

Get Request and Session Parameters and Attributes from JSF pages

I'm using JSF with facelets and I need to get the request and session parameters inside the JSF page. In JSP pages i got this parameter like that : "${requestScope.paramName}" or ...
8
votes
1answer
692 views

When to use <ui:include>, tag files, composite components and/or custom components?

I started using JSF 2.0 with Facelets recently and got puzzled by new composite components knowing existing <ui:include> and other templating techniques offered by Facelets 1.x. What is the ...
8
votes
2answers
3k views

Why does @PostConstruct callback fire every time even though bean is @ViewScoped? JSF

I am using datatable on page and using binding attribute to bind it to my backing bean. This is my code :- <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
8
votes
6answers
20k views

How to display my application's errors in JSF?

In my JSF/Facelets app, here's a simplified version of part of my form: <h:form id="myform"> <h:inputSecret value="#{createNewPassword.newPassword1}" id="newPassword1" /> ...
6
votes
1answer
1k views

Why is the getter called so many times by the rendered attribute?

Related to a previous example, i tried to monitor my get/set methods on the server (when they are called, and how often). So, my actual been look such : @ManagedBean(name="selector") @RequestScoped ...
6
votes
2answers
5k views

How to create dynamic JSF 1.2 form fields

We are using JSF 1.2 and Seam 2.2. I have found some similar questions like this one, however there are so many ways this can be done that it made me more confused. We are getting a XML file that we ...
6
votes
3answers
1k views

How to insert JSF page rendering time and response size into the page itself, at least partially?

I realize it's a chicken and egg problem and that it's not possible to accurately resolve the time it took to render a page (or the size of response) and insert that number into the page itself ...
6
votes
1answer
2k views

JSF Facelets: Sometimes I see the URL is .jsf and sometimes .xhtml. Why?

Been try to learn JSF, and sometimes I see the URL is .jsf and sometimes is .xhtml. Can sometimes fill my knowledge, please? When I create a JSF using Facelet, the file extension is .xhtml, so where ...
6
votes
2answers
376 views

How to learn JSP/MVC, with previous experience in ASP.Net MVC?

I just started to get into the door of the Java world. I have been programming in C# for the last 3 years, and been doing about 3 months of ASP.Net MVC. I absolutely love it, but the fact that I need ...
6
votes
6answers
2k views

RichFaces and Facelets, a good combo?

I've been programming using RichFaces and JSF for quite some time now, and like the features that Facelets offer (especially as part of JSF 2), but haven't used it yet. Are there any gotchas to watch ...
5
votes
2answers
418 views

JSF view getting rebuild on each ajax request

I'm having a performance problem with my JSF/RichFaces/Facelets ajax requests and from what I can tell its because the entire component tree is being rebuild on each ajax request. This is happening ...
5
votes
1answer
391 views

How to insert special characters like & and < into JSF components' value attribute ?

How to insert special characters like & and < into JSF components value attribute ? For example: I want something like this: <h:outputText value="Tom & Jerry Show" /> When I ...
5
votes
2answers
868 views

JSF 2.0 custom messages

I'm using JSF 2.0. I'm using the <h:messages> tag to render error messages. I can use css to style my messages a little bit but I've create a composite component to render messages that can ...
5
votes
3answers
3k views

JSF 2.0: How to skip JSR-303 bean validation?

How to skip JSR-303 Bean validation with JSF, when a button is clicked? A bit lengthy question to explain a few approaches... Consider a list in a form: <h:form id="form"> ...
5
votes
3answers
2k views

Dynamic ui:include inside ui:repeat. Is there a simple solution?

I want to dynamically pick a facelet to render some item in my data list. The first try would be: <ui:repeat value="#{panels}" var="panel"> <ui:include src="#{panel.facelet}"> ...
5
votes
1answer
1k views

JSTL c:forEach causes @ViewScoped bean to invoke @PostConstruct on every request

Again i see that the @PostConstruct is firing every time even though no binding attribute is used. See this code :- <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD ...
5
votes
2answers
2k views

How to show user-friendly error page instead of tomcat log with stack trace in browser when runtime exception is thrown?

I'm developing web-application with JSF. I tested it as I was able to but from time to time runtime exceptions are thrown. So, how to redirect user to special error page every time an exception is ...
5
votes
2answers
850 views

Are there “server-side comments” in JSF / Seam / RichFaces?

With the JSF/Seam/RichFaces stack, is there a way to mark up comments (on XHTML pages) so that they will not be included in the HTML output? I.e., something like JSP's <%-- comments --%>, as ...
5
votes
2answers
4k views

JSF: How to invalidate an user session when he logs twice with the same credentials

I'm using JSF 1.2 with Richfaces and Facelets. I have an application with many session-scoped beans and some application beans. The user logs in with, let's say, Firefox. A session is created with ...
5
votes
2answers
8k views

File upload using RichFaces

I am currently looking in to some file uploading using Java Server Faces. I've found this great introduction to it using RichFaces. However, I have some troubles understanding the process here. First ...
5
votes
4answers
11k views

Redirecting on session timeout in JSF-Richfaces-facelet

I am using JSF with RichFacecs to create a web portal .I want to redirect the user to the login page on session time out. I was trying to throw a SecurityException in session expiry/logged out stage ...
5
votes
4answers
6k views

How do you call List.size() from a JSF 2.0 Facelets Template?

What is the syntax for calling list.size() in a JSF 2.0 Facelets template (eg, using an h:outputText element)?
4
votes
1answer
103 views

JSF: Does it matter whether place f:event inside f:metadata or not

w.r.t. How to execute action on GET request with f:viewParam? <f:metadata> <f:viewParam name="id" value="#{tInputBean.id}" /> <f:event type="preRenderView" ...
4
votes
1answer
563 views

How to implement a dynamic list with a JSF 2.0 Composite Component?

I asked this question and although the answer directly satisfied my needs I am left with a feeling that there has to a simpler solution for this specific problem. I would like to have a composite ...
4
votes
1answer
247 views

Acessing the name attribute of a <ui:insert>

I have a JSF template with the a title and a subtitle : <h3><ui:insert name="title"/></h3> <hr/> <h5><ui:insert name="subtitle"/></h5> All the pages using ...
4
votes
2answers
319 views

JSF/Facelets: why is it not a good idea to mix JSF/Facelets with HTML tags?

I've read this several times now: some developers aren't advocates of interleaving JSF/Facelets tags with HTML tags in their XHTML files. Obviously the HTML tags won't be part of the UI component ...
4
votes
1answer
539 views

how to share a jsf error page between multiple wars

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 this. The error page should use ...
4
votes
1answer
522 views

security-constraint and welcome-file

In my web.xml I use something like this: <security-constraint> <web-resource-collection> <web-resource-name>Block all</web-resource-name> ...
4
votes
5answers
247 views

Refactor a link and an image

I have to write an link with an image inside. Instead of explaining, here's the code I have now: <c:if test="${userSession.loggedUser eq null and company.image != null}"> <a ...
4
votes
2answers
8k views

How to include another XHTML in XHTML using JSF 2.0 Facelets?

What is the most correct way to include another XHTML page in an XHTML page? I have been trying different ways, none of them are working.
4
votes
1answer
355 views

JSF (facelets) IDE code completion

I have tried to create new Facelets (JSF 1.2) component (using Java code). The component works perfectly, but the problem is, that I have no code completion for attributes in my IDE (Netbeans 6.9.1) ...
4
votes
3answers
913 views

JSF, override HTTP headers

I strongly need to override JSF 2.0 Content-Type header. Default it is Content-Type:application/xhtml+xml; charset=UTF-8 But I need Content-Type:text/html; charset=UTF-8 Thanks.
4
votes
2answers
674 views

chrome renders js different depending on the extension of the file to render [testcase included]

I was trying to implement an image panner I found here Chrome renders the same document differently depending on the extension of the file requested. I have created a test case, where it works when ...
4
votes
2answers
1k views

Custom Facelets components and attributes defined in taglib

Defining custom components in Facelets is easy and quick but there's one thing I can't figure out. Is it possible with Facelets to define what attributes my custom component has? I.e: I've created a ...
4
votes
1answer
267 views

Creating an “Edit my Item”-page in Java Server Faces with Facelets

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 ...
4
votes
2answers
1k views

Hide .xhtml source - facelets/icefaces?

I'm new to Icefaces and Facelets both, but I'm using them on a new project. I've got everything working configured and working fine. However, when I visit mywebapp/file.xhtml, the entire facelets ...
3
votes
1answer
55 views

Facelets as a templating framework in JSP

I am very fond of the Facelets templating model. On the other hand there are many applications where plain old JSTL in JSPs is just fine and JSF would be an overkill. Is it possible to use Facelets ...
3
votes
1answer
183 views

JSF 2 custom 404 error page does not get displayed with non existing pages that have the configured facelet extension

I a working on a JSF2/Spring3/JPA2 project using facelets as view technology. javax.faces.DEFAULT_SUFFIX is .xhtml and the url-pattern for Faces Servlet is *.xhtml We are also using prettyfaces but ...
3
votes
1answer
66 views

Deploy JSF composite components for shared use

I work on a Java EE project which is planned to become quite large in future and I want to share as much code as possible. This included not only Java code, but also code for UI elements. I think ...
3
votes
2answers
178 views

What is the difference between creating .xhtml or .jsp .or .jsf for JSF pages

i saw some samples creating the JSF pages with extension .jsp and other samples creating it with .xhtml extension, other samples chooses .jsf i just want to know what is the difference between above ...
3
votes
2answers
107 views

JSF2: how achieve site-wide viewParam handling policy using a template

The following seems to be ignore inside XHTML facelet templates: <f:metadata> <f:viewParam name="id" value="#{backingBean.id}" /> </f:metadata> (At least with Mojarra as per ...
3
votes
2answers
569 views

primefaces update <head> content of a page

I have a page Create.xhtml that contains <p:calendar .... /> In another page List.xhtml, that NOT CONTAINS ANY <p:calendar/>, with a Primefaces Ajax command (so WITHOUT ANY page ...
3
votes
1answer
420 views

Changing JSF prefix to suffix mapping forces me to reapply the mapping on CSS background images

I've been using prefix mapping for years and decided to switch to suffix mapping, just to get rid of the /faces in the url really. I just wanted to check I'm going in the right direction before I dig ...
3
votes
2answers
89 views

Is it possible to implement a dynamic tree of components in JSF?

I am attempting to construct a component tree in JSF 1.2 (Mojarra) where the tree consists of multiple types of junction and leaf nodes. Each leaf node needs to render in a unique way and needs to be ...

1 2 3 4 5 14