0
votes
1answer
23 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
1answer
120 views

Why is richfaces visiting nodes that have not been specified in the execute attribute?

The setup I'm working here is JSF2 in JBoss AS7 with Seam-2.3. I've a manager bean that get's called via in a big template via an <a4j:commandButton> like so: <rich:dataTable ...
0
votes
0answers
45 views

Saving position in rich:dataTable

I have a rich:dataTable containing a4j:commandLink in one of it's columns. This a4j:commandLink invokes a bean's method which creates a nested conversation. The method saves the current view name and ...
0
votes
0answers
53 views

ViewExpiredException - Firefox only

Environment: JBoss 5.1, RichFaces 3.3.3 Final, Facelets 1.1.15.B1, Seam 2.2.0 I am getting an unexpected ViewExpiredException with the following steps: Login Use app normally, then log-out (seam ...
0
votes
1answer
89 views

Heartbeat while having a long-lasting request

How can I implement a heartbeat with JSF 1.2, RichFaces 3.x using SEAM 2.x which also works during a long-lasting request executed by an user? Currently, we've got a heartbeat (to avoid session ...
0
votes
1answer
564 views

JSF 2 + Richfaces 4.2.3 - <a4j:ajax> will not complete if <rich:pickList> is in the <h:form>

I'm having trouble with a a4j:ajax tag inside a h:form when there is either a rich:pickList or a rich:orderingList in the same form. What happens is that the ajax request is not completed and the ...
1
vote
0answers
471 views

Migrating to Seam 2.3 + JSF2 + RichFaces4 causes problems in Conversation Scope

I am in the process of migrating from Seam 2.2.2 (JSF1.2,Richfaces3), that was running on a Tomcat 7 (so no EJB at all), to maven-based multi-project Seam 2.3 Final (with JSF2, Richfaces4) deployed as ...
0
votes
1answer
241 views

rich:contextmenu display after reRender oncontextmenu

I'm using Richfaces 3.3.3 Is it somehow possible to reRender a contextmenu and after it is rerendered, display it? Currently I use a4j:support with the event onmouseover to reRender the contextmenu ...
0
votes
2answers
1k views

Richfaces 4, a4j:command render another h:form

How does a4j:commandLink in dataTable render UI Component of another h:form? In tableForm, when I click edit a4j:commandLink of department datatable, ajax cannot render the entryForm of department. I ...
0
votes
0answers
44 views

detect client locale on server

I've an issue with my i18n on a local web application. This application is run from a browser that's embedded in some other application. It is probably IE7. The problem I'm fasing is that sometimes ...
0
votes
0answers
110 views

f:selectItem convert from date

I've a List of SelectItems that I populate with some java.util.Date and some corresponding labels. The java.util.Date represent DateTime values from a database. Now I notice that JSF only adds the ...
0
votes
2answers
253 views

Using a dataTable to manage a dynamic number of Strings

I've become stuck on this one: <rich:dataTable id="tabA" value="#{m.a}" rowKeyVar="nr" var="ex"> <rich:column><h:outputText value="Exercise #{nr + 1}:" ...
0
votes
1answer
513 views

javax.servlet.ServletException at Jboss 7.1 Seam 2.2.1 JSF 1.2 project environment

We've developed a web application using Jboss 7.1 + Seam 2.2.1.Final + JSF 1.2 + Richfaces 3.3.3.Final and JBoss Maven Integration 1.0 . We've deployed the our .war file to the application server ...
0
votes
1answer
306 views

h:outputLink navigation sometimes does not work

I have a navigation define from one page to another like this. <h:outputLink id="idLink" value="Page1.seam" > <f:param name="m" value="n103" /> <f:param name="mss" value="110" ...
0
votes
2answers
134 views

seam 2.2.2.Final looses translations

I'm using seam 2.2.2.Final with Richfaces 3.3.3.Final on JBoss AS 6. My application is translated into 2 languages (dutch and english). Sometimes (varying from hours to days) the web application ...
0
votes
0answers
276 views

Using Seam Remoting in richfaces fileUpload's onupload event

I have a setup using Seam2 with Richfaces-3.3. In a rich:modalPanel, I've integrated a rich:fileUpload component, like so: <h:form enctype="multipart/form-data"> <s:remote ...
1
vote
1answer
96 views

Format the actual HTML to be readable with SeamFramwork

Is there a way to format the actual HTML into readable (nicely formatted) text when generating xhtml pages from SeaMFramework. I want to be able to rightclick on my webpages and view-source where the ...
0
votes
2answers
237 views

Form validation for rich:togglePanel

In my application I've created a wizard. It seems like I can not switch panels because validation fails on a non displayed panel. The wizard has this layout: <rich:modalPanel> <f:facet ...
0
votes
1answer
362 views

Resource bundle at server-side for internationale

I faced a problem regarding loading ResourceBundle at server-side on Seam 2.2 application. In client side (JSF), it's OK to use the resource bundle: <f:facet ...
0
votes
1answer
304 views

How to rerender a rich:dataTable

I'm having trouble rerendering a <rich:dataTable> in JSF. I have a refresh link on my page that should refresh only the content <h:commandLink action="#" ...
0
votes
2answers
482 views

Seam+RichFaces fileUpload should incite reRender

I am using RichFaces 3.3 and Seam 2 to develop a web application. I have a page with the following: <h:form> <s:div id="myPanel"> <h:messages/> <rich:fileUpload ...
0
votes
1answer
134 views

reRendering issue using @Formula annotation inside entity when use in jsf/richfaces component

I having problem with it comes to reRendering again on rich:scrollableDataTable, I have an onrowclick function that sends the item in my list to be in edit mode. Here is the sample code: ...
1
vote
0answers
427 views

rich:suggestionBox with suggestionAction in JavaScript

I have an input with <rich:suggestionBox>. It works very well with a suggestionAction in the bean. But I want to implement this suggestionAction in JavaScript instead. Here is the code of my ...
1
vote
0answers
419 views

How to reload <ui:include>

We included a page with ui:include. And when a button is clicked we want to rerender ui:included page too. Here is parent page; <h:form id="mainForm"> <a4j:region ...
1
vote
2answers
2k views

rich:pickList with Ajax updates

I have a RichFaces pickList from which the user should be able to select multiple items and it should be directly reflected on the backing bean. Right now I have no way to reload selection in case of ...
3
votes
2answers
751 views

JSF entity conversion error: rich suggestionbox Conversion Error setting value '*' for 'null Converter'

I am using rich:suggestionbox. Select a suggestion from the suggestion box Then save my form It raises the validation error saying rich suggestionbox Conversion Error setting value '568-UNIMED-2005' ...
1
vote
0answers
203 views

Can't login with Seam's Identity Management

I'm trying to create a login in Seam 2 with Seam's Identity Management. I'm using mysql 5.1 for RDB. I already created a login page and modified components.xml for authentication. But here is the ...
1
vote
1answer
1k views

Strange problem with SEAM stateful session bean

I've got a stateful session bean. @Scope(ScopeType.SESSION) @Name("chuckNorrisBean") public class ChuckNorrisBean implements Serializable, ChuckNorris with some function public void ...