0
votes
0answers
29 views

Fire valueChangeListener using JavaScript

I have recently been asked to implement a function to control all the rich:calendar components based on a single SessionScoped Date object, that was placed in the header of the .xhtml template. So I ...
0
votes
1answer
36 views

How can i do a sequential display of a list of image(awt.Image) with JQuery?

I have a big problem and i need your help. My application is with JSF and rich faces. I have a list of Image in my model (imageModel): import java.awt.Image; List<Image> liste_images = new ...
0
votes
1answer
25 views

How to use javascript onkeydown on richfaces calendar?

I am using IE 8. I want to start javascript function onkeydown in component that clicks one input. Of course I tried do it like this: <script type='text/javascript'> function ...
0
votes
2answers
44 views

How check/uncheck all checkboxes from a list

This is the code of a list of checkboxes: <div class="span8"> <h:panelGrid id="columnGrid" width="450"> <rich:orderingList id="columnlist" ...
0
votes
4answers
53 views

Integrate JQuery with Richfaces

im newbie in the world of Js , my Jquery doesn't work with richfaces. I want to do something like this : http://jsfiddle.net/bFuEv/ . This is my code in my xhtml file : <!DOCTYPE composition ...
1
vote
1answer
39 views

TextField description RichFaces

i'm working with richfaces , i need to show "X" message when the field is clicked like the photo. This is my code in xhtml : <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 ...
1
vote
1answer
32 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 ...
0
votes
0answers
29 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
39 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
1answer
57 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
1answer
50 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 ...
0
votes
0answers
29 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 ...
2
votes
1answer
71 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
0answers
30 views

I use “scrollable datatable” the richfaces to search for commands via keyboard?

I use two tables to the material requirements of my system. The first shows the sector in which the requests were made. The second shows the details of the request. The requisition items. Logic: The ...
0
votes
0answers
32 views

RichFaces 4.2 Calendar - How to set the Input Field of Calendar by JavaScript? [duplicate]

I have to copy a Date String at client side to the Calendar input field "renewal_date_input". The following JavaSript did not work: document.getElementById('AddressDetails:renewal_date_input').value ...
0
votes
0answers
75 views

richfaces: how to set tooltips's value use javascript

has any comments? I dont't want to use format like this : <rich:toolTip followMouse="true" direction="top-right" mode="ajax" value="#{bean.toolTipContent}" horizontalOffset="5" ...
0
votes
0answers
30 views

ocpsoft rewrite ConfigurationProvider Registration fails

I want to use ocpsoft rewrite in order to overcome proxy issues with Richfaces. Since the JavaScript files could not be found through a proxy configuration (similar to the problem described in: JSF. ...
0
votes
1answer
43 views

Rich calender field

I'm using rich calender to select a date. we have 2 date fields from and to dates. once date selected for the from date automatically to date should populate with same date please help me in resolving ...
0
votes
1answer
101 views

rich picklist + javascript validation

I am trying to use the richfaces component picklist with a javascript validation. What I want to do is to call a javascript method on Add/Remove button pressed (this works fine), but I would like to ...
0
votes
0answers
77 views

Simulate ctrl click on Richfaces3.3 rich:extendedDataTable

I been try to add some checkbox to a extenddatatable. So I'll need to simulate the ctrl-click on table rows when click on checkbox. I tried to use: var e = jQuery.Event("click"); e.ctrlKey ...
0
votes
2answers
73 views

How to re-execute scripts in re-rendered regions?

I use richfaces / ajax4jsf to partially rerender regions of my page, here's a stripped down example: <a4j:commandButton value="..." reRender="infoBlock" action="#{...}"/> <h:panelGrid ...
0
votes
1answer
193 views

Firefox Bug since Version 18

I am using Java Server Faces, JQuery and JavaScript. I think I detected a bug in Firefox. This JavaScript code gets triggered: var list = jQuery('input.myclass'); var item = list.eq(0); item.click(); ...
1
vote
1answer
265 views

How to access a parameter in a4j:jsFunction's oncomplete attribute

Is there any way to access a parameter for a <a4j:jsFunction> in the oncomplete="" attribute of it, without using the action="" attribute and assingTo="" of <a4j:param>? ...
0
votes
0answers
13 views

Enable to get the selected value of the combo box using <rich:select> [duplicate]

Working on JSF2. In a form, I have made a combo box with rich:select tag. It has three values, 1. String (default value of combo box) 2. Integer 3. Address Along with combobox, the form has Min, Max ...
0
votes
0answers
67 views

JSF-JavaScript - cross-domain communication

there are three documents: documentA, documentB and jsonp.jsf. Unfortunately all those documents are non-HTML5, so I guess I am not able to use postMessage-API. On serverside, we are using JSF 2.0. ...
0
votes
0answers
430 views

Mixing Primefaces 3.5 and Richfaces 4.3, will the bundled jQuery conflict?

I'm developing a JSF project in which I must integrate both component libraries. In last versions the main problem was the jquery.js version and extras implementation in jQuery. I've looked the new ...
1
vote
1answer
112 views

Calling javascript method based on controller returned value

I have two Javascript method out of which I want to call only one depending upon the value returned by Controller. Actually I wanted to hide rich:popPannel if listSize > 0 and if listSize = 0 ...
1
vote
0answers
212 views

JSF Extended Datatable Sorting and Filtering

I have a extended datatable, RICHFACES 3.3.3 with sorting and filtering enabled. The table is rendered dynamically. Based on the requirement, I need to disable certain rows(which contain editable ...
1
vote
1answer
225 views

Richfaces vs Primefaces : Cannot read property 'requests' of undefined

I'm developping a web application in JSF that uses Richfaces 4.3.0 CRI and Primefaces 3.4.2. I've just notified that on any page that uses Primefaces components, I can see in the Javascript console ...
0
votes
2answers
129 views

Richfaces 4.x Calendar Component ondateselected event

In one of my applications where I use RichFaces 4.0, I am using the calendar control. I would like to read the value of the selected date and use it in javascript (for instance alert the selected ...
0
votes
1answer
137 views

how to make rich:upload accept to drag&drop a file from folder?

I have implemented the file upload using rich:upload tag, now the new requirement is to make it accept drag-drop a file from a folder, then trigger the file upload process. My question is how to ...
0
votes
1answer
302 views

uncaught TypeError: Cannot read property 'action' of null with delayed handler

I have following problem: This is my xhtml part. <h:panelGroup id="#{id}suggestionPanel" rendered="#{rendered}"> <a4j:jsFunction name="autocompleteHandler" ...
0
votes
1answer
138 views

rich:autocomplete needs two clicks to hide popup

In Internet Explorer 9 when an autocomplete popup is opened by clicking on the arrow button, it needs two clicks outside it to close it. This can be reproduced with the following code: ...
0
votes
1answer
106 views

How to call JSF action from WDCalendar

How to call a JSF action in WDcalender, i am using WDCALENDAR in JSF RichFaces, To load Edit page need to call an action, below is my code. I need to replace Edit.jsp with JSF action. function ...
0
votes
0answers
158 views

Setting a delay for opening a rich:popupPanel with onmouseover event

The following code displays a text ("Open popup") which will open a rich:popupPanel as soon as the user goes with the mouse over the text. My question is: how could I let the popup be displayed only ...
2
votes
1answer
143 views

onbeforeUnload without return or no dialogbox show

I am developing a web application in java EE with richfaces. There is a link, which logs out the user. When the user navigates away from the page or shuts the browser down I should logout the user ...
1
vote
2answers
102 views

I need to convert h:outputtext

I have a rich:datatable to show records on a DB and there are some columns in. Here is an example : <rich:dataTable id="myTable" var="myItem" value="#{myList}"> <rich:column ...
0
votes
1answer
117 views

Load script with parameters

Before I used .jsp pages for jsf, and the below code was pretty fine <script language="javascript" src='<%= renderResponse.encodeURL(renderRequest.getContextPath() ...
0
votes
0answers
196 views

a4j:commandButton doesn't work properly in Safari and IE9

I have an a4j:commandButton in a rich:datatable, which selects the row item and then opens a modal panel. Everything works properly in Firefox and IE8. In IE9 and Safari, it selects the row item, but ...
0
votes
0answers
183 views

Ajax listener of f:ajax not called on first execution only

I've a strange problem on ajax listener execution of an jsf page using Mojarra 2.1.13 and Richfaces 4.2.3.Final on JBoss AS 6.1. I've tried to reproduce the problem within the following example, but ...
4
votes
2answers
908 views

How to use a4j:commandLink with action attribute AND oncomplete attribute to fire some JavaScript?

I have some code that I have managed to get working in Chrome, IE8, but not FireFox. BTW: my a4j: namespace is a: The idea is simple, you want to be notified when item is out of stock so you enter ...
1
vote
1answer
157 views

Richfaces tree selfdrop

i got a tree <rich:tree acceptedTypes="menu"> <rich:treeNode dragType="menu" acceptedTypes="menu,article"> menu </rich:treeNode> <rich:treeNode dragType="article" ...
1
vote
2answers
579 views

Close popup window when successful

I use a rich:popupPanel component, which displays the input fields for the login. I need to close the popup when the login was successful, but just then. When the user types in a wrong password, I ...
0
votes
0answers
91 views

rich:tabPanel render error-symbol when inputs have validation errors

I have an input form that is distributed across multiple tabs within a rich:tabPanel component. When I have a validation/conversion error on a tab which does not have focus while I submit the form, I ...
3
votes
2answers
566 views

How to show timeEditor on date select using rich:calendar

I want to make a calendar where you can select the date, and automatically you can select the time. I shouldn't use butons to change the time :( So I have the next: <rich:calendar ...
1
vote
1answer
62 views

Richfaces & Ajax - Cufon font replacement?

Im leveraging Cufon to do font replacement within my application. I've got a couple of places where I make Ajax calls using Richfaces 4.2 (JSF2), but notice that when the page is refreshed the Cufon ...
1
vote
1answer
44 views

How to select all elements of the same kind in RichFaces

As far as I know, there are several functions in RichFaces that allow to get a reference to a "rich:" component by its id from javascript. But in my case I can have arbitrary amount of ...
0
votes
1answer
465 views

Richfaces-bundled jQuery is included after webapp-bundled JavaScript files

I recently upgraded my Richfaces library to 4.2.2.Final and I noticed that the jquery library bundled with Richfaces is now located below my custom scripts making them unusable. Here is the resulting ...
0
votes
1answer
296 views

Attach javascript function to rich:dataScroller

I have a rich:datatable in which every row contains a selectOneCheckbox. A javascript function is bound to checkboxes and deselects the current selected checkbox when another one is checked (so, only ...
0
votes
1answer
453 views

Need to set rich:simpleTogglePanel open=false after clicked command button

Need to set rich:simpleTogglePanel open=false after clicked command button below is my command button coding ,what should i do to change my simpleTogglePanel open=false after clicked this command ...

1 2 3