0
votes
1answer
35 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"} > ...
1
vote
1answer
34 views

Using iText with JBoss 7 Java EE project

How to use iText with JBoss 7 Java EE project? I created a Java EE Project using JBoss Tools Group Id: org.jboss.tools.example Artifact Id: multi I'm now trying to use iText to create a PDF from my ...
0
votes
1answer
52 views

Internet Explorer destroys context on a:commandButton

I am experiencing some issues when using an a:commandButtonin Internet Explorer. I am using an <a:commandButton> with an action to add a details object. This is working just fine when I use ...
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
0answers
42 views

Seam, JSF, and EL null checks

I'm working on a web application that is pretty vast. We're using Seam 2.2.1 and JSF, among other things. The full implementation isn't really relevant to the question, though. We use plenty of XHMTL ...
0
votes
1answer
42 views

Select default value in h:selectOneMenu

I am trying to show a select one menu, such that the value selected by default is the name of the city (if there is a city in the variable "item"). If there is no value, I want to show the "nothing ...
2
votes
0answers
82 views

Setting a String in JSF and Seam using selectOneMenu populated by JS

I have a string that is being set from selectonemenu. The values in the menu depend on the selection in another menu, and are populated using JavaScript. Everything behaves fine on the front end (the ...
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: ...
0
votes
0answers
58 views

Upgrading JSF from 1.2 to 2.1 on JBoss 5.1.1

I'm trying to upgrade my webapp from JSF 1.2 to JSF 2.1. Here's what I'm running now: | Item | Version | | ----- | ----------- | | JBoss | 5.1.1 (EAP) | | Seam | 2.2.1 (EAP) | | JSF | 1.2 ...
0
votes
0answers
59 views

Access nested properties in variable EL expression

Normally, I can access nested bean's property, in this case, address_name of address like this: #{customer.address.address_name} Let's say, I have a String: String addressPath = ...
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
0answers
34 views

Elegant solution for “already logged in” user in Seam

I'm using seam 2.1.2 and currently have an issue with linking from excel (link) to my application. <page view-id="/mypage.xhtml" login-required="true"> ...
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}"> ...
2
votes
1answer
51 views

Passing HTML into message bundle

I am in the process of 'Internationalising' my App, which is SEAM 2 / JSF 1.2 based One thing that is annoying me is having HTML markup in the message bundle, I would like to avoid this if possible, ...
0
votes
2answers
68 views

SEAM localeSelector not injecting

I am using SEAM 2's LocaleSelector to set the locale in my application which works ok I am also using JAWR's i18n message generator to make the messages available as a Javascript variable, as per the ...
2
votes
0answers
57 views

selenium server launching two test execution tabs in firefox

So as the title suggests, when launching my HTML suite with a custom firefox profile (also with multiwindow), the server is launching two tabs, both trying to execute the test, targetting the same ...
0
votes
0answers
76 views

How to access a bean in ServletContextListener's contextDestroyed

I have a JSF application that uses JSF 1.2 and Servlets 2.3 and Seam 2.2.0. I want to run a sort of backup everytime the application closes. I have tried using the ServletContextListener like this: ...
0
votes
2answers
101 views

Conversation scoped and jsf redirect

is it possible to maintaining conversation during redirect to external url? I started paypal transaction with CDI conversation bean and next there is faces redirect to paypal page when I log in and ...
1
vote
2answers
106 views

Pass session values from action to servlet in seam framework

I am setting the session object in TestAction class and when i am trying to get the session object in TestServlet it returns null. Any one please tell me how to pass session from action class to ...
0
votes
2answers
110 views

Keep url parameters after clicking <h:commandButton>

I've got a page which takes an id as a url parameter and uses it to get an object and display data about it. On this page we've got a modal which includes a file upload component, so we cannot use ...
0
votes
1answer
33 views

Seam3 @ViewConfig redirect page https

I have seam 3.1.0 Final application, use @ViewConfig for security part, it works fine redirect http, @ViewConfig public interface AppViewConfig { static enum Checkout { @ViewPattern("/test/*") ...
0
votes
0answers
80 views

Illegal view ID…ID must begin with /

I am trying to redirect to a page in Seam using the following code: public String getReferURL(){ return this.referURL; } public void setReferURL(String referURL){ this.referURL=referURL; } ...
0
votes
1answer
69 views

Is it possible to read Registry key values from java Web from client machine?

I want to read specific key values from Windows Registry machine from the web server. I'm using jsf and seam. I just wanted to check if there is a certain application that was already installed on the ...
0
votes
1answer
49 views

Seam unexpected createInstance call

I have a xhtml page, in which i'm trying to open a dialog and set/change some values. Page is normally backed by MemberInformationService, in this page's page.xml, i call a wire function to set some ...
2
votes
3answers
290 views

Understanding the necessity of type Safety in CDI

First I should clarify that this post is not intended to criticize CDI, but to discover the thinking and assumptions behind the design of CDI and that will have obvious influence on designing any ...
0
votes
0answers
64 views

Seam session management

Can anyone help me with the equivalent of this snippet for Seam session management if( !session.isNew() ){ session.invalidate(); session = request.getSession(true); } I tried this ...
0
votes
0answers
52 views

Same IP login overrides user sessions in Seam

I need help, I currently developed an application with seam 2.2.2, running on jboss 6. Using entitymanager. I noticed when multiple users login from the same IP address, there sessions are overridden. ...
0
votes
0answers
97 views

title of each option not showing in Safari

I have a page that has a drop down that can contain long characters. I need to truncate it so that when the drop down will be clicked, the field will not consume the whole page in all browser types ...
0
votes
0answers
59 views

Get invalid parameter / attribute in jsf composite

Given the following: <composite:interface> <composite:attribute name="value" type="java.lang.String" /> <composite:attribute name="action" method-signature="void action()" ...
0
votes
1answer
202 views

view-handler references to “com.sun.facelets.FaceletViewHandler” that does not implement interface javax.faces.application.ViewHandler

I am converting the normal project into maven project, so I have a problem with the configuration. Maven 3 Seam 2.2 Richface 3.3 jsf 1.2 jboss 6 warning-message of eclipse: view-handler ...
0
votes
1answer
87 views

selectOneMenu sets field to null after being changed

I try to do something that is very similar to this richfaces example. I have a form that describes custom ID validation in case that you have not selected one of the predefined ones, else the form ...
0
votes
1answer
65 views

SEAM @DataModelSelection scope

Suppouse I have a dataTable, with one of it's columns being a commandLink, which opens a rich:modalPanel with detailed info about the item. The question is, whether the @DataModelSelection field will ...
0
votes
0answers
171 views

Correct history support with JSF 2.0, SEAM + HTML5 pushState, history.js [closed]

As most of the jsf developers may know, managing urls and history correctly in jsf is rather an inconvinient task, and needs a lot of effort, if you want to keep urls and back button/browser history ...
0
votes
2answers
164 views

Why does a h:commandButton fail to submit the form if it's parent is dynamically rendered?

This JSF1 code has me totally puzzled for hours. The basic setup is this page displayed with Seam2: <h:form encType="multipart/form-data"> <rich:dataTable value="#{results}"> ... ...
2
votes
1answer
102 views

On submit of a4j:commandlink i get random html of that action rather than html in JSF

I am working with SEAM - JSF framework I have following a4j commandlink on my xhtml page. <a4j:commandLink id="rateImage" action="#{ratingSessionAction.rateImage}" ...
1
vote
1answer
209 views

SEAM JSF Lazy Init Exception on bean property

I am experiencing an issue with Lazy initialization exception in my SEAM (2.2.2) Application, I am using a SEAM managed persistance context (with JPA), described in the documentation here SEAM Docs ...
6
votes
1answer
300 views

ViewExpiredException after identity.logout(); in JBoss Seam

After my AuthenticationFilter redirect to login page, I would like to logout to user. That's why, I put identity.logout(); in my pre-render method checkPermission(...) of login.xhtml. But, I get the ...
0
votes
0answers
107 views

how does JBoss Seam identity.hasRole('..') work in navigatin process?

In JBoss Seam, how to use identity.hasRole('..') in navigation process. I would like to redirect to login page if the login user does not have Administrator role. When the user logged with ...
0
votes
2answers
94 views

How to change TimeZone based on user TimeZone

I would like to use different TimeZone base on the User's TimeZone. Question : Is there any feature to set default in JSF or Seam? It will be effect the whole application. I hope, the feature will ...
0
votes
0answers
69 views

How to control trigger job from UI

I am using Seam 2.1.2 integrated with JSF, JPA and RichFaces. In my application I am using QuartzTriggerHandle and I need to control Trigger from UI. How should I do this from user interface? Sample ...
1
vote
1answer
129 views

Render JSF Page in backend and save the output to file

I am using JSF 1.2 with Seam 2.2.2 And woundering if i can render a page from with in the Code and Save the output to a file instead of sending it to the client. //Trind
0
votes
1answer
62 views

JSF Report rendering lower thread priority

I generate huge report with facelts, Excel and PDF, Using JSF 1.2, Seam 2.2.3 Woundring if i can somehow lower the thread priorty on thease JSF pages since it dosn't realy matter how long the take ...
2
votes
4answers
596 views

Convert String inside h:outputText into capitalize String?

How can I convert a String in h:outputText? Here is the code of h:outputText: <h:outputText value="#{item.label} : " /> I tried using this, <s:convertStringUtils format="capitalize" ...
1
vote
1answer
177 views

a4j:support function getting called only once in h:commandLink

I am using JSF 1.2, Seam 2.2.2 and Richfaces 3.3.3. I have an a4j:support event that is being called when someone hovers on the link. But this function is being called only once after the page loads. ...
0
votes
2answers
541 views

Richfaces 4 dynamically created rich components display as text instead of menus/links

I'm migrating from RF3.3.3, JSF1.2 and jboss 5 to JSF2/ RF4. We have a rich toolbar group with dropdown menus that is generated from a database table. I made the changes to web.xml, renamed the ...
0
votes
1answer
210 views

Change style of certain selectItem in <h:selectOneMenu

In my xhtml page I am using a <h:selectOneMenu> component. In order to populate data, I am using a <s:selectItems> component inside the component. What I need is to conditionally change ...
2
votes
1answer
586 views

How to pass a parameter along with h:commandButton

One of the most common approaches to change locale in JSF+Seam - with <h:selectOneMenu>: <h:form action="#{localeSelector.select}" rendered="false"> <h:selectOneMenu ...
1
vote
2answers
260 views

JSF 1.2/Seam 2.2 - validator is skipped when input it empty

I am trying to call validateLength in JSF (xhtml file of seam) <f:validateLength minimum="2" maximum="512"/> It works for values such as text length 513 and 1 (i.e. it shows a warning, but ...
1
vote
1answer
196 views

How to embed unified expression language in a template

I would like to add a simple template language to my application based on Seam / JSF to let the users compose their own email. Since I don't want to create a new parser, I would like to use the ...
4
votes
4answers
978 views

ICEfaces/Seam file upload component not uploading files

Update I'm currently over at the ICEfaces forums to get my problem solved - sadly, none of the provided options led to a solution now, but they indeed gave me some more insight into the whole JSF ...

1 2 3 4 5 9