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

learn more… | top users | synonyms

0
votes
1answer
778 views

Problem with c:forEach inside rich:dataTable

I have this page: <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
0
votes
0answers
10 views

How to stop a4j:ajax component in richfaces from reloading the complete default component?

I am developing application in richfaces 4.x . I am stuck while using the rich:select along with a4j:ajax . Following is the code snipplet- ` <rich:panel id="test" style="min-width: 604px; ...
1
vote
1answer
11 views

Creating dynamic inputs in jsf2

i want to create dynamic textbox in jsf2 in datatable having textboxes based on clicking add row button. Iam a newbie for jsf programming.Can someone tell me a basic example for dynamic for generation ...
-3
votes
0answers
19 views

Bypass login page for authentication using richfaces and jsf

I am using JSF 2 and Rich faces 4.2. I have one login page to login (login.xhtml) [hits login controller] to my application. This accepts 3 fields user id, password and account #. Now, if somebody ...
1
vote
0answers
13 views

<rich:extendedDataTable> <c:forEach> Displaying a table via a “Map of maps”

I have a data model with structure : TreeMap < String, TreeMap< String, Double>> resultMap; This is stored in a SessionScoped ManagedBean. I am trying to output this via a dynamic < ...
0
votes
1answer
13 views

Prettyprint XML

We have some XML stored as a blob in a MySQL database, and display it in a rich faces modal panel as raw text via a servlet. We'd like to use google prettyprinting (or another if anyone thinks there's ...
2
votes
2answers
162 views

How to show row number information on rich datatable?

I'm trying to show the following text on the footer of my table: Showing 11 to 20 of 51 entries But I can't find a way to do it. I didn't find any vars in the footer that give me those variables ...
1
vote
5answers
8k views

row counter for html table row

I have HTML table in JSF web application. I am generating rows dynamically using <ui:repeat>. I want a counter for each row. How can I get this? Any help? Ssimilar to rowKeyVar in rich faces ...
1
vote
1answer
25 views

Displaying an error message from a4j:jsFunction

I have this a4j:jsFunction below and an <h:message for="form" style="color:red" /> somewhere else on the page. <h:form id="form"> <a4j:jsFunction id="createEvent" ...
1
vote
2answers
27 views

When I Download Excel file from Java not show “Save as” Window, but the file is correctly saved

I want to show to the user the "Save as" Windows when i click in the option "Export File" of my app, the file is an excel 2007 than i have created with Apache POI. The file is correctly saved in the ...
1
vote
1answer
18 views

JSF or PrimeFaces searcheable treeview control

Is there a JSF or PrimeFaces control which is a "searchable" treeview? I am thinking similar to the Eclipse "options", where you type in some text into a searchbox and the treeview autoupdates ...
1
vote
0answers
16 views

javascript - ajax - jsf - bean interaction

I have a selectBooleanCheckbox (CB) and two inputTexts (IT1, IT2) all bounded to the resp. bean fields. When CB is selected I want that the value of IT1 and IT2 are set to default values and ...
0
votes
1answer
143 views

Getting rich autocomplete value

I´m trying to implement a richfaces dataTable. Each row has a richfaces calendar, two richfaces autocomplete, and 3 input texts. I have a command button in another form. When I enter some values in a ...
1
vote
1answer
26 views

How to select each visible day, which are not part of the current visible month?

I have a problem. I should work with the RichFaces calendar component so I can select each day, which are visible for a current selected month, but that is not possible. An example: I selected the ...
-2
votes
0answers
24 views

Implement pass reference in a method

How to implement pass reference in a method? I meet some problem when I pass params to a method in Java. Take a look tje code: //org.richfaces.model.TreeNode TreeNode treeNode = ...
1
vote
1answer
23 views

Extended Data Table and DataScroller

<rich:extendedDataTable sortMode="single" width="700px" value="#{gpsReport.reportSummary}" enableContextMenu="true" var="gps" ...
0
votes
1answer
31 views

Map as backing property for rich:pickList

I want to use Map<String, List<Object>> as a backing property for rich:pickList as follows: <ui:repeat value="#{bean.selectedMap.entrySet" var="entry"} > ...
0
votes
0answers
8 views

how to put info to the form after getting then from the databse in jsf and webflow

I am using webflow and jsf. when I click the link, I want to get url of the form from the database and put it for my form and get nqPassword from the databse and put it to the form. Then a new window ...
1
vote
1answer
43 views

JSF render data table content from managed-bean?

I'm using Richfaces to develop some web pages, with a datatable I try to display some data information from remote server. But its quite slow to load all data in one time, so I use a cache to store ...
0
votes
0answers
11 views

Richfaces facebook like multiselect for large datacollection

I'm working with Richfaces 4.3.0.FINAL but I can't seem to find a nice component what can do what I want. I have a huge collection of Documents in my database, and the user must be able to add some of ...
0
votes
1answer
318 views

Changing css in richfaces

I'm trying to change the font and some other css class in richfaces. My question is how can I access the skin parameters like #{richSkin.generalFamilyFont}? or is there another way to change the ...
0
votes
1answer
37 views

Submitted value lost when custom converter is used

I have created a custom converter to be able to parse a date/time without the time by setting it to midnight. (Thus 11.11.2011 will be converted to 11.11.2011 00:00.) When I enter some completely ...
0
votes
1answer
24 views

how to open a page in a new window in jsf with webflow after using evaluate

in jsf with webflow, I need to use a link and when I click the link a new window should be appear but the url of the link is not static I have to reade it from the database and prepare it then use it ...
0
votes
0answers
15 views

Image loaded with mediaOutput richfaces component from database

I´m using JFlow Plus v2 Jquery plugin in my website (JSF 1.2 + richfaces3.3.3). When I generate code like this: <!-- Slider --> <div id="sliderContainer"> <div ...
1
vote
1answer
27 views

<rich:dataTable> from listOfMaps

I have a SessionScoped bean which has a list of maps. I am attempting to get a <rich:dataTable> produced using <a4j:repeat>. The list of maps is being populated correctly, although there ...
0
votes
1answer
24 views

<rich:tabPanel> not switching

I have a <rich:tabPanel> and inside it I have three <rich:tab>,but tabs are not changing automatically whenever I'm clicking the next button for switching from one tab to ...
0
votes
0answers
14 views

Richfaces does not get submit code when adding select in the xhtml file

I am having the following problem: there is a xhtml page which contains a form. When this form is submitted by a button it calls to my pagebean and saves the values submitted to my database. But since ...
0
votes
1answer
67 views

<a4j:commandLink> its not calling the action

i am trying to create a link to the newly created record, and the link i am including inside the success message panel after successful creation of the link, But i am unable to call the action using ...
0
votes
0answers
27 views

Facing issue with rich-notify tag

Is it possible to disable the main screen operations while showing the success message using rich:notify tag? Thanks in advance.
0
votes
1answer
24 views

Ajax submission to update backing bean property in jsf 1.2

I am using jsf 1.2 with rich faces library I have a form like this : <a4j:form> <!-- lof of other components here --> <h:panelGrid> <h:inputText id="someOrg" ...
0
votes
1answer
29 views

Liferay portlet issue with Richfaces 4.2 and PortletBridge 3.1

We have an application with numerous portlets for Liferay 6.0.6 using JSF1.2 with RichFaces 3.3.3.Final and PortletBridge 2.1.1 and everything was working fine. We decided to upgrade our stuff to JSF2 ...
3
votes
2answers
8k views

Richfaces Calendar Minimum and Maximum Dates

My problem is making the RichFaces calendar restricting the dates to be allowed to be chosen by the user. Let's say I want to allow only the dates of this month and the dates of the next month to be ...
-3
votes
0answers
23 views

Getting Script error [closed]

Iam using rich faces im my application view to upload file I have used <rich:fileUpload id="upload" addControlLabel="Browse" autoclear="true" acceptedTypes="jpg, gif, png, bmp" ...
3
votes
1answer
1k views

RichFaces application, should I use rich:dataTable or jQGrid, pros cons?

Following on from here, I need to have an inline editable grid in my web application using RichFaces 3.3.3, JSF 1.2 and Facelets. My options are the rich:dataTable RichFaces control, or the jQuery ...
0
votes
0answers
45 views

a4j:jsFunction oncomplete does not fire

I want to call a javascript method, when the aj4:jsFunction request is completed. But somehow the method defined by oncomplete does not work. Here's the jsf code: <h:form> ...
0
votes
1answer
23 views

Return value from a4j:jsFunction

I want to get an return value from the a4j:jsFunction. But I don't know how to get this done. Here's the JSF code: <h:form> <a4j:jsFunction name="createEvent" ...
3
votes
2answers
478 views

Spring 3.1 and jBPM 5.2 (+ JSF2/Richfaces4) integration

I have a project that uses Spring3.1, Hibernate3.5/JPA2, JSF2/Richfaces4.1, & Java EE Security. I now want to integrate jBPM 5.2. Are there available jBPM5-Spring3 integration examples? Has ...
-1
votes
1answer
17 views

scrollableDataTable show extra column in richfaces

I used scrollableDateTable for scrolling data without hide headers, after populating the data into that it shows an extra column. How to hide the extra column or remove that column in ...
0
votes
0answers
20 views

Infinite loop when I call a simple JSP page using IBM RAD 8 + IBM WebSphere 7 + RichFaces 3

I'm trying to get the following example work under IBM Websphere, usind IBM RAD 8 and RichFaces: http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/GettingStarted.html This the set of ...
0
votes
0answers
59 views

Open rich:popupPanel on current mouse cursor position with jquery

The following code will open a rich:popupPanel vertically aligned with and directly below the h:commandButton: <h:commandButton value="Open popup" id="openBtn"> <rich:componentControl ...
0
votes
2answers
32 views

<h:commandButton> not firing the action method

I have a nested <h:form>, and inside the inner most <h:form> I have a <h:commandButton> like this, <h:commandButton value="Next" actionListener="#{billController.saveFiles}"\> ...
0
votes
0answers
17 views

Need context Params for Provider URL in Richfaces push

I need to combine JMS(ActiveMQ) with Richfaces Push. I am unaware how to provide the PROVIDER URL through Context param in web.xml. I could find how to override the default value of context factory, ...
0
votes
0answers
27 views

extendedDataTable rich column filters breaking commandLink

I'm having a problem with my rich faces extendedDataTable and the a4j:commandLink within it. The links work fine when at first, but when I use the built in column filters it breaks... Kinda. In fact ...
0
votes
1answer
27 views

rich hotkey to replace a4j:commandButton

I want to replace the a4j:commandButton or link with rich hotkey.Hotkey to enable/disable the rich tooltip . Any help would be appreciated.I am using rich face 4 so the handler attribute is not ...
4
votes
4answers
4k views

Conditionally display a richfaces modal panel

Quite simple: <a4j:commandButton id="bob" action="#{MyBacking.doAction}" image="/img/btn.png" reRender="stuff" oncomplete="#{not empty ...
0
votes
1answer
86 views

Trouble using a richfaces tabPanel with dynamic tabs

I saw on richfaces showcase that the best way to use rich:tabPanel with dynamic tabs is with a4j:repeat, but this doesn't work in my application. This is my code: <html ...
0
votes
1answer
1k views

jsf richfaces insert only numbers

this is what i have atm: <h:outputLabel value="#{locale.nroEmployees}:"/> <h:inputText value="#{companyEditBean.companyEmployeesAmount}" disabled="#{not ...
0
votes
0answers
9 views

How to use rich:modalPanel on top of other windows in application

I Have richmodal panel, but on browse button click I open that rich modal panel, which is not yet top on other window. some of screen portion overlapping so I could not use as modal window. I tried ...
0
votes
1answer
1k views

ManagedBeanCreationException: Unable to create managed bean richBean

I followed the following tutorial to create a RichFaces application with Maven 3: ...
0
votes
0answers
21 views

calling a javascript from a4j:jsFunction in richfaces 3.3.3

i have a javascript which i put in the extraHeaderContent: <ui:define name="extraHeaderContent"> </script> --> <script type="text/javascript"> function ...

1 2 3 4 5 51