Tagged Questions
Ajax4JSF is part of the RichFaces framework. It helps to add Ajax behaviour to JSF pages.
5
votes
1answer
461 views
Sending a callback to JSF a4j:jsFunction oncomplete event
I am trying to make call to JSF functions in my app more dynamic. Instead of static way of writing callback functions to oncomplete event by hand, I wish to send a callback function as a parameter and ...
5
votes
3answers
5k views
How to correctly access the data field in an a4j:jsFunction result
I am currently trying to validate some front-end values with some server-side methods (as a group) and am running into issues dealing with the result.
Here is the XHTML for the button that starts it ...
4
votes
2answers
1k views
Using a4j:support to update the model and view, ready for the next button/submit action
The Problem
We have a swing based front end for an enterprise application and now are implementing a (for now simpler) JSF/Seam/Richfaces front end for it.
Some of the pages include fields that, ...
4
votes
2answers
532 views
Use of a4j:commandbutton vs h:commandbutton to present-new-pages in richfaces
I have completely substituted the h:commandButton with a4j:commandLink in my application for reasons not relevant to this issue. Since then I am seeing flaky peculiar side-effects in IE8 such as ...
4
votes
2answers
5k views
JSF A4j support
I'm having trouble with a JSF selectManyCheckbox and A4J support. The purpose is to run some action when a checkbox is selected. This works perfectly in Firefox. Yet, when testing in any IE (ie6 / ie7 ...
3
votes
2answers
114 views
Seam action resolved to null after validation in IE
For my current project I'm working with JSF, Seam and Hibernate and I have an issue with seam.
I created an XHTML-file with an input field (for productionMonth) and I defined a validator on it to ...
3
votes
6answers
11k views
How to re-render a RichFaces component after a4j link is invoked
Hoping someone can help me with a slight hurdle I've come up against in regards to re-rendering of RichFaces components after an a4j link/button has performed it's action. A simplified version of my ...
2
votes
1answer
160 views
meta tags in jsp with a4j
I have a JSP page in a JSF application which uses A4J. I want to add a meta tag to put IE9 in compatibility mode. Unfortunately, this meta tag has to be the first tag in the head.
A4J automatically ...
2
votes
1answer
338 views
Passing parameters to a4j:ajax method
I am trying to use <a4j:ajax> to feed a method with a value just entered on the form;
<h:selectOneMenu id="aa" value="#{colorClass.color}">
<f:selectItems ...
2
votes
2answers
2k views
open a new window in a4j:commandButton
Using A4J, Richfaces in a web application, I need to open a new browser window when the user clicks on the <a4j:commandButton>.
I think I will have to use window.open(URL, ...). Where should I ...
2
votes
2answers
3k views
Richfaces: Problem changing a component's 'rendered' attribute value with a4j:support in extendedDataTable
I'm trying to use richfaces extendedDataTable with a4j:support to change a rich:panel's 'rendered' attribute's value but it's not working.
This is part of my JSF page that contains a ...
2
votes
1answer
480 views
Manage back and forward in Richfaces
I'm using RichFaces component library and I want to manage the history of Ajax navigation, so the enduser can use the browser back and forward buttons.
Is there any clean way to do it, design ...
2
votes
1answer
978 views
For a4j:jsFunction, does reRender or oncomplete happen first?
I have a jsFunction that I am running, and would like javascript to be performed after re-rendering is finished. I'm guessing that the javascript in "oncomplete" is called -after- re-rendering takes ...
2
votes
1answer
2k views
JQuery, JSF and a4j:commandLink
I have a problem with using jQuery Dialog and Ajax submit in JSF.
I have the following code for displaying Dialog windows:
<script type="text/javascript">
...
2
votes
2answers
2k views
Duplicate Id. JSF
I have a problem with JSF. Can anyone say why this doesn't work?
<h:selectOneListbox
id="lang" size="5"
value="#{MbInstitution.node.lang}"
...
2
votes
2answers
4k views
Intercept a4j:commandButton request
I am developing web application using A4J, Richfaces.
One of my requirement is, I need to check if the user has changed any values in the form when he is trying navigate away from the page.
I have ...
2
votes
4answers
2k views
Is ajax4jsf dead? What other AJAX libraries for JSF are there?
I am currently using the JBoss RichFaces JSF component library for the project I am working on. It works quite well in general, especially the AJAX support provided by ajax4jsf (A4J), but I find the ...
2
votes
2answers
6k views
Conditionally required jsf validation in a4j form
I'm having a little problem with using conditionally evaluated expression in jsf/a4j
Here's my code
<a4j:form>
<h:inputText id="id1" value="#{mybean.myvalue}" size="1"
...
2
votes
1answer
7k views
RichFaces: Displaying a notification “popup” when AJAX operation succeeded
We are currently developing a B2B web shop based on Java EE 5, JSF, Facelets and RichFaces. The technology has really worked very well so far, but now I am facing a small problem I just can't figure ...
1
vote
1answer
41 views
Show/hide h:inputText on selection of h:selectOneMenu
I'm using JSF 1.1 and Ajax4jsf. I want to show/hide a <h:inputText> on change value of a <h:selectOneMenu> element named "Colors".
For example, if I select "Red" value in ...
1
vote
1answer
133 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 ...
1
vote
1answer
122 views
Reduce JavaScript files needed for A4J JSF Richfaces
I've been asked to suggest some performance improvements for a site that uses JSF/Richfaces/Seam/A4J.
One thing I've noticed is that there seems to be a lot of JavaScript being downloaded for A4J. ...
1
vote
0answers
58 views
How to add more values to attribute 'process' in a4j:jsFunction by using javaScript or jQuery in JSF dynamically
I am using ajax function to save the data when click on a save button.
And need to process some component id's.
<a4j:jsFunction id="fnSave" name="save" action="#{Bean.actionSave}" reRender="msgs" ...
1
vote
1answer
79 views
How to disable a4j:commandLink
I have an a4j:commandLink and I want to disable it when it is clicked.
I write the code like this:
<a4j:commandLink id="link"
onclick="this.disabled=true;"
...
1
vote
4answers
196 views
How can I call a JavaScript function after every a4j AJAX response?
I am working on a web app using JSF w/Seam. I want to be able to call a JavaScript function after every ajax response. I'm looking for a way to do this without putting an oncomplete attribute on every ...
1
vote
1answer
63 views
Every time I make an Ajax request in JSF2 I am getting a new session bean,why?
Hi I am getting a new session bean for every ajax request made to this Bean... Can any of you tell me why ?
...... imports ......
@Named(value = "userController")
@SessionScoped
public class ...
1
vote
1answer
172 views
AJAX4JSF/AjaxStateHolder | Session Memory Leak
I am working on the performance tuning of an enterprise web application with about 300 simultaneous user. I have noticed from the GC log that the application heap is always growing and objects are ...
1
vote
1answer
80 views
JSF. How to set a value of JavaScript function to a field of Bean?
Good morning! How to set a value of JavaScript function to a field of Enterprice Java Bean?
I have the js function:
<script type="text/javascript">
function getTimezone() {
var d = ...
1
vote
1answer
79 views
SEAM stateless bean not updating
I am trying to implement 'forgot password' functionality using JSF SEAM in our index page, I am using a a4j:jsFunction to send the users email and card number via two 's
It seems to work fine when I ...
1
vote
2answers
110 views
How to maintain/save row values when generating a new row?
i have the following bean:
public class MyBean {
public ArrayList<ReportRow> getReportRows()
{
return reportRows;
}
private final ArrayList<ReportRow> reportRows = ...
1
vote
1answer
84 views
Using JSF AJAX methods to keep JavaScript module scope
I am working with the application, which has JSF2 framework. The idea of that framework is to manage connection between Backend (Java) and Frontend.
I know, that JSF version we are using creates ...
1
vote
1answer
125 views
JSF field highlighting with ajax posts?
I'm building on BalusC's solution to highlight and focus fields in JSF. My plan is to output a JSON array with ids and then have a method be called which will process this array. This works fine when ...
1
vote
1answer
133 views
Coding JSF, commandButton's navigation-action-outcome by Code
i try to fix unmanagable code like this:
<a4j:commandButton action="dia_ok" actionListener="#{...}" ajaxSingle="true" .../>
i fix it by bind the button to an ManagedBean and swap all the ...
1
vote
0answers
86 views
a4j:jsFunction actionListener not listening
The listener is:
public void renderer(ActionEvent event) {
System.out.println("here=========================");
System.out.println();
System.out.println();
System.out.println();
...
1
vote
1answer
118 views
JSF - Two instanciations of the managed-bean
When I access to my page for the fist time, the managed bean used by the page is instanciate two times (I pass two times in the contructor, with the same stack trace) :
Daemon Thread ...
1
vote
2answers
69 views
Basic JSF: is it possible to SET a property value in EL?
I need to do something like this:
<a4j:support even="onclick" action="#{myBean.myProperty = null}"/>
I would like to know if this is possible and which would be the proper syntax if so.
1
vote
3answers
234 views
JSF: How show 'waiting' message?
i create a contact form, but now i want to show a wait message like 'sending message' for example.
this is what i have done so far:
<h:form styleClass="contact">
<h:inputText id="name" ...
1
vote
1answer
173 views
Focus disappears when a4j:support is used
I use JSF and I have 2 input texts on the page.
<h:inputText id="xxx" value="#{file.xxx}" maxlength="12" >
<a4j:support event="onchange" reRender="datePanel1"
...
1
vote
1answer
184 views
JSF viewscope values not getting displayed in the view properly
I have a managed bean under ViewScope. It has an instance variable inside it.
MetaData object has a inputItem object List.
@ManagedBean
@ViewScoped
public class ConBean implements Serializable {
...
1
vote
2answers
190 views
How keep updating message with RichFaces 4?
i'm new with RichFaces 4 and JSF 2, i'm working with both together.
How do i keep some message updating all time using RichFaces ?
E.g: a clock, where the server keep sending a message to the client.
...
1
vote
0answers
216 views
Internet Explorer very slow using lots of checkboxes with valueChangeListener/ajax
I have a jsf site with a html table, which shows up to 300 rows and 50 columns. Except the table-header and the first column (someones name) all the cells contain a checkbox.
So i have a form with up ...
1
vote
1answer
491 views
RichFaces commandbutton onclick methods
I'm using a RichFaces commandbutton and I need it to execute two functions on click, one after the other. Right now, I have the code like so:
<a4j:commandButton styleClass="btn-hide"
...
1
vote
0answers
354 views
Passing parameter to a4j:function
How can I pass parameter to a4j:jsFunction from javascript, I want to call
categoryChanged and whatever I put there - even explicit String, parameter is not visible on bean side.
Here is js code:
...
1
vote
1answer
461 views
use a4j:queue for events synchronization
I have an input text and a button on the form. I process event onchange for input text and onclick for button. If the user changes the text and then click the button 2 events fired and sometimes they ...
1
vote
1answer
509 views
how to rerender a dynamic id (nested within datalist) in jsf/a4j?
Using jsf 1.1.11/richfaces 3.1.5 and have a facelet with multiple tables (lists driving tables are all stored in a map) on one page, each with their own sorting/pagination which fire off ajax requests ...
1
vote
3answers
348 views
Problems with conditionals in JSF
I have the code bellow:
<c:set var="show" value="#{cartBean.itemsAdded}" />
<c:if test="${show}">
<h:form id="test1">
<h:commandLink action="#{cartBean.foo}">this ...
1
vote
2answers
482 views
JSF - h:selectOneListbox - how to move items up and down
I have an <h:selectOneListbox> populated with an <s:selectItems>, which is just attached to a list property on my Seam object. Here's my (simplified) JSF code:
<a4j:outputPanel ...
1
vote
1answer
116 views
custom jsf components with a4j support
Does anyone can tell me about some good tutorial related on building custom jsf components with ajax capabilities with a4j?
best regards.
1
vote
2answers
3k views
How to pass selected value as parameter for passing in a4j:support
I have one <h:selectOneMenu> inside that <a4j:support> is written.
I have to pass the currently selected value through <a4j:support> as a parameter to action.
How can I do this?
...
1
vote
1answer
89 views
Handle a client component from a server during an AJAX request
In my application, i have implemented a message bar for displaying info and error message, which will close when a screen navigation occurs(a javascript function triggered by window.onunload event).
...