RichFaces is a component library for JSF and an advanced framework for easily integrating AJAX capabilities into business applications.

learn more… | top users | synonyms

1
vote
1answer
2k views

Invoking methods with parameters by EL in JSF 1.2

I am using a <rich:dataTable> element and for each row I have two buttons, an "Edit" and a "Delete". I need these buttons to be read-only, i.e. disabled, if a certain condition is met for the ...
6
votes
2answers
7k 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 ...
9
votes
2answers
19k views

Concatenate strings in JSF/JSP EL and Javascript

I'm having troubles with EL and javascript functions (JSF 1.2, Facelets, Richfaces 3.3.0GA). I have a page that includes another composition: <ui:include ...
3
votes
1answer
2k views

<a4j:comandbutton> action is only invoked on second click

I want to submit a data table on a button click, but that action is not called on the first click. Here is my code: <h:panelGrid id="addToThisDepartmentPanel"> <h:outputText ...
20
votes
4answers
21k views

f:convertDateTime displays wrong Date

In my Web Application I retrieve data using Hibernate and display it in a RichFaces dataTable. In my MySQL-table there is a field of type "date". When I print this field to the log in my Bean, it ...
5
votes
5answers
18k 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 ...
6
votes
1answer
4k views

JSF2 logs with tomcat

I'm having a project using JSF2 (2.1.2), Richfaces4 (4.0.0.Final) on tomcat6 (6.0.28). In order to manage portability between Tomcat and WebSphere7 for my EARs, I have the following jars inside my ...
4
votes
2answers
3k views

Is there any difference between f:ajax and a4j:ajax?

Is there any significant difference between f:ajax and a4j:ajax tags? I know about a4j:ajax from Richfaces 4 is based on native f:ajax JSF2 tag adding some attributes not found in f:ajax like ...
-2
votes
2answers
284 views

developing java blog module [closed]

I am devolping one application using java,rich:faces,jsf and hibernate. I have to develop a blog module their like google blog where user can insert image,videos,text in text editor and then he can ...
26
votes
10answers
26k views

RichFaces Vs PrimeFaces [closed]

I am using JSF 2.0 and I am looking for a copmponent library with minimal load in terms of performance. Which one is better to use if I have choice between RichFaces and PrimeFaces? What are the ...
4
votes
2answers
3k views

Is there a way to create dynamically <rich:tab> elements?

Let say that I want to create a variable set of <rich:tab> elements within a <rich:tabPanel> component. So I tried to do that way: <rich:tabPanel switchType="client" ...> ...
3
votes
3answers
3k views

File download using RichFaces

I got the following to work already: User can upload a file (i.e. a compressed archive) User can uncompress the file on the server User can execute some stuff on these files, which results in more ...
2
votes
1answer
2k views

How to create a composite component for a datatable column?

Given this datatable (naturally working): <rich:dataTable var="var" value="#{values}"> <rich:column> <f:facet name="header"> HEADER </f:facet> <h:outputText ...
1
vote
2answers
2k views

Warning JSF1095 while using a h:commandLink inside a rich:dataTable

I have a h:commandLink inside rich:dataTable. When I click on the command link, I'm adding a FacesMessage to the context and redirecting to the same message. I have a h:messages tag on the page to ...
0
votes
1answer
496 views

Is @Produces more efficient that a getter in an EL expression

I'm wondering which of those two code snippets is more efficient. First one In userSearch.xhtml : <rich:dataTable var="user" value="#{userSearchResultList}" rendered="#{not empty ...
9
votes
3answers
11k views

How do I stop richfaces adding borders to panels and calendars?

I'm hoping to use a custom richfaces skin to handle the bulk of my presentation work. Unfortunately richfaces renders borders around every cell in a calendar component and around each panel. I would ...
7
votes
3answers
17k views

Execute backing bean action on load?

I would like to build a results page for a report export page. This results page must display the status of the export and offer the download of this export. The export is done in an action method. I ...
7
votes
5answers
17k views

Server-side DataTable Sorting in RichFaces

I have a data table with a variable number of columns and a data scroller. How can I enable server side sorting? I prefer that it be fired by the user clicking the column header. ...
6
votes
5answers
19k views

HTTP response header content disposition for attachments

Background Write an XML document to a browser's response stream and cause the browser to display a "Save As" dialog. Problem Consider the following download() method: HttpServletResponse ...
3
votes
1answer
9k views

How to access complex java maps in jsf/richfaces

I hope you can help me. I'm new to java and jsf and richfaces and I've created a java map in a class (called "TaskListData") accessed by my backing bean as follows: public class TaskListData { ...
2
votes
1answer
2k views

RichFaces4 startup fails with java.lang.IllegalArgumentException: duplicate key: class javax.faces.convert.DoubleConverter

This seems not be not a simple task with RichFaces4 without Maven, I download myfaces-2.0.9 jars and richfaces 4.0.0 and added sac-1.3.jar, guava-r08.jar and cssparser-0.9.5.jar. The environment I am ...
3
votes
4answers
4k views

Icesfaces vs Myfaces vs Primefaces

I am starting out a new project that involves the use of JSF 2.0. From my initial reading, the Mojarra and Apache Implementation of the project covers the basic components that you will need. But I ...
3
votes
1answer
3k views

FacesContext == null

I have a problem - I am trying to get FacesContext by calling FacesContext.getCurrentInstance(), but it returns null. I am using jsf with richfaces, here my web.xml: <?xml version="1.0" ...
3
votes
2answers
1k views

Accessing java-based DOM tree directly from JSF/richfaces

Based on this question I have a couple of other questions: 1) the map in this question which is made available to jsf is actually one of a number, so i'm now not sure what the backing bean method's ...
3
votes
3answers
8k views

richfaces suggestionBox passing additional values to backing bean

When using the RichFaces suggestionBox how can you pass more than one id or value from the page with the text input to the suggestionBox backing bean. ie: to show a list of suggested cities within a ...
2
votes
3answers
4k views

IE9 + RichFaces Rendering problem

I have a web app which runs on JSF 2.0 + Richfaces 3.3.3. Looks great on all browsers except IE9. In IE9 without compatibility mode (With, no problem) it looks something like this (ignore blacked out ...
2
votes
1answer
864 views

How can I remove the css classes from a richfaces component?

I'm using a rich:simpleTogglePanel and it puts these 3 css classes on the divs: rich-stglpanel rich-stglpanel-header rich-stglpnl-marker rich-stglpanel-body Is there any way that I can remove those ...
1
vote
1answer
841 views

How to upload folder in web application

I am developing simple application using JSF with richfaces. I want to upload folder(select folder only). I tried, t:inputFileUpload and rich:fileUpload. but both components are support file only. ...
1
vote
1answer
771 views

Making Glassfish respond to ajax request JSF 2

I'm trying to do an ajax request to my server (Glassfish v3.1 open source edition) and for any reason the request never go to the server, running the same proyect on tomcat 7 it works correctly, ...
1
vote
2answers
3k views

a4j:included rich:dataTable negatively affects a4j:commandButton

Hello I have a JSF/RichFaces setup with an index.jsp which a4j:includes another piece of code which contains a rich:dataTable. It initially renders fine, and selecting an item on the index.jsp's ...
1
vote
3answers
13k views

Passing action in <rich:modalPanel>

There is some way to pass action in . I want to write simple popup with "Yes" and "No" button, and I want to reuse this popup in different pages, that's why I need that different action was invoked ...
0
votes
1answer
1k views

Richfaces 4.1 and a4j:push: how to get it working?

does anybody have the a4j:push tag functional in an environment simular like mine? Richfaces 4.1-FINAL MyFaces 2.1.5 Atmosphere 0.83 Tomcat 7.0.23 Any suggestions are very welcome. Thanks, Milo ...
7
votes
2answers
2k 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 ...
4
votes
3answers
6k views

Deprecated richfaces javax.faces.el.MethodBinding replacement use

I found this piece of code works in that i can programmatically creates a richfaces dropdown menu. But some of the code is deprecated. Can anyone tell me what to put in instead of the deprecated ...
3
votes
1answer
2k views

Retrieving other component's client ID in JSF 2.0

Does JSF 2.0 have a built-in method for finding the client ID of another component? There are about a thousand client ID-related questions on SO and there are a lot of hackish methods to do this, but ...
3
votes
3answers
6k views

Pass parameters to messages from resource bundle to components other than **h:outputFormat**

Is there a convenient way to pass parameters to messages from resource bundle to components other than h:outputFormat? For instance, this is legal: <h:outputFormat ...
2
votes
1answer
673 views

a4j:commandButton reRendering rich:datatable

My issue is that I am trying to have a column in my datatable show an outputtext by default, and replace that with an inputtext when the commandbutton is pressed. Have not found a solution. First post ...
2
votes
1answer
1k views

Could not complete the operation due to error c00ce56e

Hi i've upgraded from rich faces 3.3 to rich faces 4.2 because ajax didn't work for IE9. Now it still not works. After recieving the Response IE gets an js error "SCRIPT58734: Der Vorgang konnte ...
2
votes
1answer
5k views

Adding RICHFACES to existing JSF2 project

I'm trying add richfaces to my JSF 2 project using this jboss guide. I've did what they say in point 2.6, but after restart my tomcat server, HTTP Status 404 is reported. Have I missed something?? ...
1
vote
1answer
78 views

rich dataTable can not use iterate variable for a nested loop

I'm building a rich datatable with a dynamic amount of columns. It seems to me, that it is not a big thing, but I'm trying to get an answer since hours. The issue is when I want to use the iteration ...
1
vote
1answer
230 views

RichFaces dynamic TabPanel

How to implement a simple add/remove dynamic <rich:tabPanel>? (I've seen people asking this around so I thought postin a Q&A of a simple implementation)
1
vote
1answer
374 views

IllegalArgumentException: duplicate key (JSF)

I'm using Tomcat 7, Richfaces 4.2.2, MyFaces 2.1.5 and Facelets. When I start Tomcat I get the error: An error occured while initializing MyFaces: duplicate key: class ...
1
vote
1answer
2k views

Avoid jquery conflict in my jsf application

I load jquery in my jsf project. I load header part only. Before i load the jquery, link and menu actions are perfectly worked. (Not load jquery) But, after i load the jquery the link action and ...
1
vote
1answer
1k views

JSF Myfaces NullPointerException: serialFactory

Im a bit at my wits end here. Im getting the following in my logs when I try to render a JSF page: java.lang.NullPointerException: serialFactory at ...
0
votes
1answer
165 views

JSF and Richfaces rich:select and f:selectItems

how to highlight elements in a list with different colors using JSF and Richfaces
0
votes
2answers
746 views

JSF2.0 + Richfaces 3.3.3, jsp not found error

I created simple project using JSF2.0 + Richfaces3.3.3 + tomcat6.0.29 in Netbeans6.9.1 Step1 : File -> NewProject + Select JSF 2.0 + Prefered Page Language as JSP Step 2: Jar JSF2.0 jsf-api.jar ...
0
votes
0answers
204 views

I need <rich:simpletogglepanel> functionality to my <rich:toolbar> tag or else 2 Menu buttons on <rich:simpletogglepanel>

I have a requirement, like i need a collapse and expand functionality available in to my which contains dropdownmenu. How can i do it? I need a help.some says you need a write a custom tag. But am ...
0
votes
0answers
384 views

How to pass parameters to ui:include that inside of c:forEach tag

We are trying to create a list with iterating an entity with ui:include. my .xhtml file is like; <c:forEach items="#{entityHome.list}" var="entityId"> <ui:include src="/some.xhtml"> ...
0
votes
2answers
4k views

change background color of a row in rich:dataTable

i have a row in rich:datatable, which has a link in one of its column. Onclick of this click i need to change the background color of the selected row. how can i achieve this?
0
votes
4answers
5k views

Changing language by clicking a button

I have a JSF/RichFaces setup, and I found this tutorial. I followed it step by step, but I can't manage to get it. Also: language.jsp is mentioned in the tutorial, can anybody tell me what exaclty ...

1 2 3 4 5