JavaServer Faces (JSF) is a model-view-presenter framework typically used to create web applications. Version 2.x is a major step ahead compared to JSF 1.x, significantly expanding the standard set of components and component libraries. If you're using JSF 2.x, tag your questions as such so that ...
0
votes
0answers
3 views
JSF-pages are not affected by Eclipse's refactoring function
When I do refactoring in my backing beans, the xhmtl-files are not affected and JSF's EL-expression point into nowhere.
0
votes
1answer
17 views
apply css on a particular component
H,
According to primeface document in case I want to apply css on a particular component this should work:
<p:splitButton id="split"
value="Execute"
...
-1
votes
0answers
15 views
java.lang.ClassNotFoundException: com.sun.facelets.FaceletViewHandler “How to solve”
java.lang.ClassNotFoundException: com.sun.facelets.FaceletViewHandler
at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1509)
at ...
0
votes
1answer
29 views
Prime Faces vs Bootstrap?
Can somebody please explain the differences (pros/cons) between prime faces and bootstrap? I'm very new to the java world and I want to use bootstrap but a couple of senior devs are telling me ...
0
votes
0answers
6 views
JSF 2.1 PrimeFaces Mobile 0.9.4 Calendar not working
I am trying primefaces mobile Calendar.jsf example using JSF 2.1, PrimeFaces 3.5 and PrimeFaces Mobile 0.9.4.Do I have to provide stylesheet for Calendar by myself or can it be pulled from primefaces. ...
0
votes
0answers
8 views
ICEFaces <ace:selectMenu> required&optional value
I have two drop down lists in a page, the 1st one is "Select Work Type" drop down list, it has 6 choices; the 2nd one is "Select FWRS Number" drop down list, but some of the choices here are optional ...
0
votes
0answers
3 views
Call specific method of a managed bean from a menu item with prime faces
I have a JSF2 page build with with Primefaces. In this page I have a menu bar which contains below code, having 3 menu items: File -> Open, Create, Quit.
<p:menubar ...
1
vote
0answers
17 views
Bind and retrieve managed bean to Composite Control
I have an XHTML structure as follows,
<h:dataTable value="#{mainBean.customerlist}" var="c">
<h:column>
<h:panelGrid rendered="#{c.renderclient}">
*html design for client*
...
0
votes
1answer
16 views
Combine Richfaces 4 with OpenFaces 3
OpenFaces FAQ page says:
OpenFaces 3.0 is waiting for the readiness of JSF 2.0 enabled RichFaces 4, and doesn't have critical compatibility problems with the current RichFaces 4 Milestone 3.
...
0
votes
1answer
24 views
JSF2 Data Table with huge data sets
Which JSF2 Framework does fit following requirements and why?
huge data sets (rows)
much information for each record (columns)
performance
column headers, filters, toolbar and paginator should be ...
3
votes
1answer
57 views
When is it advantageous to create a class in java [closed]
I am creating a webapplication which has around 20 managedBeans for an equal number of jsf pages. Each page has a number of tables on the page that may/may not have the same column definitions. In ...
0
votes
0answers
12 views
selectOneRadio and IllegalArgumentException
I've got this error during value change on selectOneRadio.
SEVERE: selectAllPrivRadioId
java.lang.IllegalArgumentException: selectAllPrivRadioId
at ...
0
votes
1answer
21 views
Is there any marquee effect behaviour in Primefaces..?
Is there any marquee effect behaviour in Primefaces..? I want to display auto scrollable news feed in my JSF page with pure Primefaces tags. I have used marquee tag but it is depreciated.
0
votes
0answers
14 views
Value not retained if two different components are rendered using mutually exclusive rendered value
I want to render only one of two different component which will have same value in the bean based a check box. I was able to do so using the rendered attribute but the values are not re-rendered, it ...
0
votes
2answers
20 views
MyFaces CODI instantiates beans twice
I'm migrating a JSF 2.1 application to CDI. To be able to use the @javax.faces.bean.ViewScoped annotation, I'm trying to use MyFaces CODI, as suggested here.
The application seems to be working as ...