Tagged Questions
0
votes
1answer
12 views
commandlink in JSF not generating the intented HTML tag
I'm trying to call a managed bean from h:commandLink in JSF. But I don't see href attribute in the rendered HTML a tag.
Am I missing something ?
There is a ManagedBean called AccountSetupController ...
1
vote
0answers
6 views
Primefaces p:celleditor celledit
I'm implementing a p:dataTable component, based on the Primefaces Showcase.
The code is:
<p:dataTable
id="newDataTable"
editable="true"
editMode="cell"
var="item"
...
0
votes
0answers
26 views
RichFaces tree and ArrayList
I am looking to populate a rich tree using an arrayList defined in a java file.
The array list is a an list of object "carVO" having (String make,String model,int year)
The root of the tree is a ...
-2
votes
0answers
38 views
Which framework for interactive websites? [on hold]
I'm in the process to choose a framework for a pet-project. I will be some kind of stock trading game. Thus rough requirements will be:
displaying different charts based on large database data
...
-1
votes
1answer
46 views
JSF Deselect selectOneRadio
Is it possible to deselect/uncheck items is <p:selectOneRadio> or <h:selectOneRadio/>?
<h:selectOneRadio value="#{adminManageBroadcastController.selectedImage}" ...
0
votes
1answer
22 views
Update Javascript source from backbean JSF
I have Javscript in my XHTML file as
<script src="test1.js"></script>
Now I have couple of other javascripts as well. They are actually themes.
I want give users flexibility to change ...
1
vote
2answers
46 views
Java @entity nested relationships
I have a parent entity that has child entities (A) who in turn have their own child entities (B).
@Entity
public class Parent {
@OneToMany
Set<ChildA> childrenA;
}
@Entity
public class ...
0
votes
1answer
27 views
Primefaces - how to pass parameter between 2 ui:define
I need to pass a parameter between two forms both being in a separate ui:define.
I have a web site where left part of it is a tree table and center part is a form. I want to click a node on the left ...
2
votes
1answer
77 views
ClassCastException Java with list iterator
I have a very strange error in my code. I am using iterators since the beginning of my project and I never had problems but here I can't understand what's going on.
I have a model class
public class ...
0
votes
1answer
29 views
Using Java Profiler (VisualVM) with Oracle Application Server (OAS)
I need to optimize JSF application. It's running on a localhost Oracle Application Server 10g (OAS).
I would like to use VisualVM to profile the said application but it couldn't detect the instance ...
0
votes
0answers
27 views
Replacement for Seam's pages.xml in JavaEE6/Deltaspike?
With Seam 2.x no longer being updated with new functionality, we have begun to migrate our applications to standard JavaEE 6 with Apache Deltaspike CDI modules for enhanced functionality.
One feature ...
4
votes
0answers
35 views
Getting warning from JSF: The response was already committed by the time we tried to set the outgoing cookie for the flash
I have a page1.jsf, in this page i have a commandButton that put an object in ELFlash, and redirects to page2.jsf. In this page i recover the object by ELFlash. Everything works fine. But while the ...
-1
votes
0answers
22 views
Exception sending request initialized lifecycle event to listener instance of class org.springframework.web.context.request.RequestContextListener
I'm getting this error when I try to configure my first application. war I successfully generated but when I hit the URL of my project this error appears on the web page and same error appears in ...
2
votes
1answer
42 views
Can I create a annotated Faces Application Listener Class?
I want to create a Faces application Listener with annotation
I have the following class:
package com.chhibi.listener;
import javax.faces.application.Application;
import ...
1
vote
0answers
49 views
CDI Bean not found from JSF page
I have a simple xhtml page with an el expression. But this expression won't get resolved and no error is thrown.
test.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
...