0
votes
0answers
9 views

Create dynamic ENUM Menu Tag in JSF 1.2

I'm struggling on this problem because it destroys my modularity a bit. I'm using JSF 1.2 and facing to use an h:selectOneMenu to select one value of a given set of Enums. e.g. public enum State { ...
1
vote
0answers
17 views

Update primefaces growl from inside ui:component

I have a page where the form contains a primefaces growl, and when adding message, and updating works very well, shows up and then dissappears as I wanted. I added templating to some of my pages and ...
0
votes
0answers
12 views

primefaces creating a dynamic dashboard

Following the example at http://www.wobblycogs.co.uk/index.php/computing/jee/49-dynamic-dashboard-with-primefaces im trying to create a dynamic dashboard. Copying the code works 100% perfeclty, but ...
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; ...
0
votes
2answers
44 views

Passing variable to another view: best practice

I've got a form in a view, for example say: form.xhtml <h:form> <h:panelGrid columns="2"> <h:outputLabel value="Name" /> <h:inputText value="#{bean.name}" ...
0
votes
1answer
28 views

Can't get value of Map<BigDecimal, String> by key

I have a map like Map<BigDecimal, String> functions = new HashMap<BigDecimal, String>(); When I try to access the value of map from a JSF page, it displays nothing. I checked the size ...
-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
0answers
16 views

Primefaces Wizard: values, actions and validations not working after first step

We are using PrimeFaces 2.0 wizard to build a complex registration. In the first tab, all actions works fine (ajax actions executes, validation performs, values are binded to bean, etc), but in the ...
0
votes
2answers
32 views

How do you navigate between two web apps?

If I have two web apps http://www.abc.com/app1 and http://www.abc.com/app2 how do I handle navigation between the two? I would like to be able to navigate to app2 using links in a menu that I have ...
0
votes
2answers
32 views

JSF SelectOneMenu get Entity

I am trying to obtain a Customer entity from a JSF SelectOneMenu component: The classes I have are as follows: Customer Entity @Entity @Table(name="CUSTOMERS") @NamedQuery(name="Customer.findAll", ...
1
vote
1answer
22 views

how getting BufferedImage inside <h:graphicImage />

byte [] imageInByte = event.getFile().getContents(); InputStream in = new ByteArrayInputStream(imageInByte); try { BufferedImage bImageFromConvert = ImageIO.read(in); } catch (IOException e) { ...
0
votes
0answers
15 views

How to set visibility of a f:selectItem into p:selectOneRadio?

I have a p:SelectOneRadio with 4 options in my form. I would like to set the condition Rendered to false only in one f:SelectItem, depending on user profile (stored on session) E.g: If the user is an ...
0
votes
0answers
24 views

Primefaces LazyLoading Table Select First Row by Default

Need Help on the proper way of selecting the first row of a primefaces datatable when the page is refreshed, load, sorted, paged <p:dataTable id="clientTable" widgetVar="clientTableVar" ...
0
votes
2answers
21 views

How to create a left navigation pane using facelets in JSF?

I need to create a user interface where the content changes every time the user moves to a new page. However, the header and footer remains the same. But, within the content, there is sometimes a ...
0
votes
0answers
36 views

Update ui:repeat partially JSF Primefaces

A have a page something like this: <h:form id="form"> <h:panelGroup id="panel"> <ui:repeat id="repeat" value="#{myBean.ojects}" var="item"> <h:panelGroup ...
0
votes
1answer
35 views

Create a converter for selectOneMenu at runtime

So I need to create a screen that is dynamic and provides information about objects wich have an unknown number of parameters, of various types (could be texte, could be date, and, thing that causes ...
0
votes
0answers
40 views

primefaces partial processing not working

I would like to use partial processing but it does not work in my code. Does anybody knows why? <h:form id="frmVehicle" prependId="false"> <p:toolbar styleClass="form_toolbar"> ...
0
votes
0answers
37 views

java.lang.ArithmeticException: / by zero with Primefaces LazyDataModel

Until now, I had a JSF managed bean with LazyDataModel that looked something like the following. @Controller @ManagedBean @RequestScoped public final class StateManagedBean extends ...
0
votes
1answer
18 views

JSF getting property type list inside h:datatable

<h:dataTable value="#{SearchingBeans.list}" var="entry"> <h:column> <f:facet name="header"> <h:outputLabel>Photo</h:outputLabel> ...
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 ...
0
votes
1answer
16 views

Explicitly Logout the User programmatically in Websphere Portal 8 & redirect to the default login page

I am a bit new to WS portal & have a requirement wherein on a specific scenario we want the user to logout & redirect him to the default portal login page. I have tried to invalidate the ...
1
vote
1answer
37 views

Web application using JSF-Front end and node.js-Back end

I'm planning to build a eCommerce web application(similar to http://zovi.com/) using JSF 1.2 and node.js. All front end components will be jsf components binding to backing bean. I want to achieve ...
-4
votes
0answers
16 views

No navigation case match for viewId…and outcome

My project using JSF2.0,openjpa,spring,tomcat 3.7.5. When i calls each method, it will pop up "No navigation case match for viewId /building/company/companylist.xhtml, action #{companyMBean.query} and ...
0
votes
0answers
20 views

Http session and @ViewScoped map location

I was thinking of switching to a distributed key-value store for http session data when suddenly @ViewScoped beans came to my mind. They also persist their state of the view in a Map<String, ...
0
votes
0answers
15 views

Primefaces dataexport to excel renders links as plain text

I need to export data to Excel spreadsheet using primefaces. I tried 3 options: Using standard HTML a href (In this case exported data contains no link at all) <p:column style="display: none" ...
3
votes
1answer
47 views

How to use Node.js efficiency in existing java web application

I have an existing eCommerce web application in JSF 1.2 framework . We wish to use node.js technology's benefits in our existing application . Our Focus : Keep View[html ] part in JSF framwork and ...
1
vote
2answers
38 views

hanlding a ui:repeat that returns empy value

I have a ui:repeat that returns a list of entity. Is there any way to know that the returned list is empty? <ui:repeat id="resulta" value="#{testController.testList}" var="list"> ...
0
votes
0answers
28 views

How to inject Repository file in converter class in JSF project

I have to use <p:pickList converter="userConverter"> component from primefaces in jsf I have created UserConverter.java class which implements converter interface I mentioned entry of this file ...
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
1answer
27 views

JSF custom converter not always used

I've got a custom converter that extends DateTimeConverter, which I've registered for the java.util.Date class in my faces-config.xml. Essentially all that the new converter is doing is adding a more ...
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
33 views

Values of h:inputText inside p:treeTable are not processed

I want to process this form (valueChangueListener is not valid in real case). This is the back bean: @Component @Scope("request") public class TestBean extends PrivateBaseBean implements ...
0
votes
0answers
41 views

Values of h:inputText inside p:tabView are not processed

I want to process this form (valueChangueListener is not valid in real case). This is the back bean: private List<Management> managements; //getters setters protected static final Logger ...
1
vote
1answer
31 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 ...
-3
votes
1answer
34 views

dao implemention exception in jsf framework

i created a jsf web application, i am integrating common dao classes in the action class but i am getting this error java.lang.NullPointerException at ...
0
votes
0answers
39 views

Jsf login exception

i am developing jsf web application, i am having a problem in web.xml it shows javax.servlet.jsp.JspException: Cannot find FacesContext My web.xml file is below: <?xml version="1.0" ...
1
vote
1answer
53 views

JSF + primefaces calling getter way too much times

I read all answers on this topic (not only) on SO, but none of this solves my problem. I have datatable: <p:dataTable value="#{reportBean.reportData.rows}" ...
0
votes
2answers
52 views

Prettyfaces, it's not been resolved?

I'm trying to build custom URL as prettyfaces tells that it do, but after setup it, it gives me this error: Referenced file contains errors ...
0
votes
4answers
104 views

Best practice for objects where not all properties will always be used [closed]

Here is my scenario: I have an object with 10 properties (e.g. name, birthday, etc.). I am using that object on two separate pages in my jsf web app. On one page I will only ever use 5 of the ...
0
votes
1answer
47 views

JSF UTF 8 characters not seen ONLY in first form post, jsf, tomcat?

I have a simple JSF form where I submit a username and password and persist to database. Only in first form submit, I am having problems with UTF-8 characters. When I submit ğğüüçç in first post, I ...
0
votes
0answers
33 views

jsf use classes from different project

I have two projects. One for the DAO and one for the JSF stuff. When I try to get an enum from the DAO project displayed on an jsf page, it does not work. The error that occurs is ...
0
votes
1answer
52 views

PrimeFaces dialog lazy loading (dynamic=“true”) does not work?

I have recently changed all my beans from RequestScoped to ViewScoped. Suddenly, the lazy loading of dialogs does not work. I am using PrimeFaces JSF library. <html> <h:body> ...
-1
votes
1answer
36 views

Navigation-rules in JSF

I know that It is possible to set navigation-rules in the faces-config.xml File. But there, I know only the option to do the Navigation in a correct Flow. But I want to avoid that a user that isn't ...
0
votes
2answers
50 views

javax.persistence.TransactionRequiredException in small facelet application

I'm trying to persist some values to a MySql database from a small facelet application but keep getting this error. I had this same application with a JPS page and a servlet and it worked fine with ...
-1
votes
1answer
56 views

how to save many h:inputText value of DATATABLE in Database

Use to present them. *XHTML*page <h:dataTable value="#{bean.scores}" rowIndexvar="index"> <h:column> <h:outputText value="#{index+1}" /> </h:column> ...
0
votes
1answer
35 views

Hiding events in p:schedule with css

I hava a p:schedule that shows 2 sorts of events. The list with Events is filled with a Try method like this: //ResourceEvents eventResourceAvailPerDay.addEvent(new DefaultScheduleEvent(reason, ...
0
votes
1answer
51 views

Issue with an EJB Facade injection in a JSF Managed Bean [closed]

I am a newbie, working with java/ejb3/jpa2/jsf2 and Glassfish/netbeans7.2. I generate with Netbeans in auto mode my entities Beans and my facade Beans from my MYSQL DB. I injected my Facade Beans in ...
1
vote
1answer
51 views

Setting correct value to JSF element

I'm trying to acces an JSF Element from a Java Bean, so I can use it in my app, but I need to send the text from a textarea to a <f:setPropertyActionListener /> The problem is that I don't know ...
0
votes
1answer
68 views

How to use @FindBy annotation in Selenium Web Driver

I want to know what wrong with my code, because when i try to test my code, i didn´t nothing... public class SeleniumTest { private WebDriver driver; private String nome; private String idade; ...
0
votes
1answer
40 views

No active contexts for scope in EJB service

I have EJB bean and there is a class RemoveInactiveUsersTask extends TimerTask when I invoke method which update user status in DB. This is sample code of my class: @Singleton @Named ...

1 2 3 4 5 101