0
votes
0answers
16 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; ...
-3
votes
0answers
20 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 ...
0
votes
1answer
14 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 ...
1
vote
0answers
19 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 < ...
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
1answer
19 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
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 ...
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
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 ...
0
votes
1answer
32 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
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
39 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 ...
1
vote
1answer
44 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
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" ...
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
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 ...
-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
60 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
0answers
20 views

Open Modal after conditional timeout

I want to open a popupPanel with a waiting message on certain Ajax requests. But some of them are just too fast sometimes. I have no way of knowing if they'll delay or not, but I'd like them to open ...
1
vote
0answers
33 views

how to upload image using rich:upload

I have problem on upload image. Image is uploading correctly but browser is not showing up the image. It shows only after refreshing the page. <rich:fileUpload id="upload" ...
1
vote
1answer
65 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 ...
0
votes
2answers
71 views

HTTP status code 500 (internal server error) while loading a JSF page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" ...
0
votes
0answers
33 views

RichFaces 4.3.1 rich:datable clickable row to set to ManagedBean

I'm having problems with rich:datatable component. I've got a table where the row is clickable. It works with the event "rowclick". However, when i use the rich:dataScroller the datatable kind of ...
0
votes
2answers
52 views

Does JSF provide input component where suggestion for textbox reappears after space?

I am looking for JSF component similar to auto suggestion or combo-box but with extended functionality that options in drop down suggestions reappears after user has clicked space. In other words, ...
0
votes
1answer
26 views

Richfaces requirement jre version

Does richfaces application require a minimum jre version on the browser to run. Is it a must to have jre 1.5 and above version on the browser.
2
votes
1answer
47 views

How to show error message when my server is down / not available while making JQuery request?

I have a code something goes like this; <a4j:commandLink actionListener="#{controller.validate}" onclick="showFadeLoadingImg();" oncomplete="confirmOperation();}" ...
0
votes
1answer
18 views

rich:scrollableDataTable with a 2 row header

I'm developping a scrollableDataTable with an header having 2 row in it. <rich:scrollableDataTable ... <rich:column...> <f:facet name="header"> <s:div> <h:panelGrid ...
0
votes
1answer
37 views

What is LimitToList in JSF ,RichFaces ? is it removed in RichFaces 4.x?

What is LimitToList in JSF ,RichFaces ? is it removed in RichFaces 4.x ? is limitToList and LimitRender are same?
0
votes
1answer
63 views

How disable date selection for previous days in RichFaces Calendar?

I would to disable the dates before the current date in <rich:calendar>. I already Googled about it, but none seems to work so far. Any idea how to do this in a easy way ? This is my code so ...
0
votes
1answer
62 views

JSF component - IN: pick file from server; OUT: file path only

I need to find some very compact component which allows me: choose file in file system get its absolute path (or file itself) I've tried: <rich:fileUpload> component, but it seems to be ...
1
vote
3answers
64 views

Can i use immediate property in JSF to refresh my html page without calling any backing bean methods??

Can i use immediate property in JSF to refresh my html page without calling any backing bean methods?? i am new to jsf please suggest & also explain use of immediate
1
vote
0answers
18 views

Integrate RF3.3 and Trinidad in JSF project

My web application is running JSF(2.0) without facelets and RF3.3. I need to integrate Trinidad into the existing web application project. I have downloaded the trinidad jars and have placed them ...
0
votes
1answer
37 views

Richfaces 4.3.1 weblogic 10.3.5.0 duplicate key on deploy

I'm having trouble with richfaces 4.3.1 on weblogic 10.3.5.0, on deploy the following exception happens: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! ...
0
votes
2answers
78 views

Migrating from RichFaces 3.x to RichFaces 4.x causes error parsing a4j.taglib.xml

I have downloaded the richfaces-components-ui-4.3.1.Final.jar and pasted it in /WEB-INF/lib folder and also the other JARs required for RichFaces 4. In spite of that, I am getting the below mentioned ...
0
votes
1answer
66 views

disabled=“#{not recordsTransferSearch.isDisabled}” does not call isDisabled() method

I'm trying to disable a jsf component just by defining a action method and bind it to the components "disabled" attribute. My JSF component snippet <h:form id="bulk_sch_form1"> ...
0
votes
0answers
35 views

pickList Richefaces 3.3.3

I hope you can help me, I work with richfaces 3.3.3 and JSF 2 and I have a problem with pickList this is my bean private SelectItem[] listnomDossier; List<Dossier> listDossier; public ...
2
votes
1answer
93 views

Richfaces and JSF/AJAX Lifecycles

I´ve managed to get the code to do what I intended, but I do not understand a particular aspect of why this works. I´m running Seam 2.2.2 with Richfaces 3.3.3. Here is the code from the xhtml page: ...
-1
votes
0answers
37 views

Issue deploy a JSF 1.2/RF 3.3 on JBoss AS7 [duplicate]

2 days earlier when i deploy a web-app on JBoss AS 7, these errors appears, and i'm not able to resolve them. The errors might's triggered because of parsing a Xml file, but which file ? Help please: ...
0
votes
0answers
31 views

Execute Callback when a4j:mediaOutput element Completes Rendering

Is there a way to call an action method or javascript function when an a4j:mediaOutput completes the rendering of its image? I checked and there is no oncomplete attribute for this element. ...
0
votes
1answer
58 views

rich:calendar update backing bean after component edit

I have a rich:calendar component in a datatable: <rich:column id="last_#{row.index}" > <rich:calendar id="lcal_#{row.index}" value="#{_obj.list[row.index].lastTaught}"> ...
0
votes
1answer
39 views

rich:progressBar currentValue does not working with For-Loop?

In RichFaces 4.1, rich:progressBar 'currentValue' from the ManagedBean does not updating with for-loop. progressBar.xhtml <h:form id="formProgress"> <h:commandLink ...
1
vote
1answer
139 views

Errors after migrate from JSF 2/RichFaces 4 to JSF 1.2/RichFaces 3

After applying necessary changes to migrate from JSF 2/RichFaces 4 to JSF 1.2/RichFaces 3, these errors was appears and i'm not able to solve them: What's the cause of those exceptions please ...
0
votes
1answer
58 views

How to update JSF web application components without broking it's current functionality?

I have a large web application (100+ jsf pages) using RichFaces 4.1.0. I was trying new features offered by RichFaces 4.3.0 (rich:placeHolder, for example). This brings me to the question: If I really ...
0
votes
0answers
55 views

Keeping components styled in datagrid after paging with rich:datascroller

I have a page with a rich:datagrid and rich:simpletogglepanels inside as elements.As the footer I have a rich:datascroller.Code is below. <rich:dataGrid columns="1" width="100%" ...
0
votes
0answers
60 views

how to refresh particulartab of rich tabpanel

I have rich tabpanel with switchtypeas client, when i did page refresh in 3rd tab its navigating to first tab. please find the code snippet below Please suggest how to refresh only recall tab. Also ...
0
votes
1answer
41 views

Move the open/close marker of rich:simpleTogglePanel

I have a simpleTogglePanel set up as follows: <rich:simpleTogglePanel headerClass="myHeaderClass" opened="false" switchType="client" style="border: 0px;" bodyClass="myBodyClass"> ...
0
votes
2answers
81 views

How edit <rich:fileUpload> CSS?

I'm trying to show only the button add and the uploaded picture below the button, but it doesn't matter what I do in my CSS, the table generated by richfaces is always the same: This is my form using ...
0
votes
0answers
55 views

richfaces 4 rich:tabPanel switchType=“client” exception

I want to use the richfaces 4 rich:tabPanel and I have this code: <rich:tabPanel id="tabMenu" switchType="client"> <rich:tab id="overview" header="Overview"> ...
0
votes
1answer
33 views

How to color a part of a4j:commandLink text value?

I want to color a part of a4j:commandLink text value For example My target view I use this code <a4j:commandLink value="My Link &lt;span style='color:red;'&gt;*&lt;/span&gt;" ...

1 2 3 4 5 32