Tagged Questions
0
votes
1answer
39 views
How do I use html5 with jsf 2 and facelets?
I'm trying to use the HTML5 doctype with jsf 2.1 and Facelets on a Glassfish 3.1.2 server.
I've seen many places that we could just replace the xhtml doctype with html5 doctype
<!DOCTYPE ...
0
votes
0answers
20 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
0answers
31 views
How to create a multi-module JSF 2.0 application?
I am trying to create a multi-module (separate jar) based JSF 2.0 application. I have gone through the following links:
How to create a modular JSF 2.0 application?
JSF facelets template packaging
...
0
votes
1answer
33 views
JSF entity converter dificulty
I'm developing on JSF2.1(PF3.5) + EJB(3.1) + JPA(eclipselink2.4.1).
On a facelet i have a form with an input box to search for 'Merchant' entities with ajax.
I need the searched merchant reference to ...
1
vote
1answer
38 views
How to use a single form between two ui:define
I've got a simple template where is defined two areas, toolbar and content. The toolbar area has the many commandButtons and the content has fields.
My problem is: How to use a single form between two ...
0
votes
1answer
59 views
Is it appropriate to navigate by command button
So i've read some about JSF and i've come to think about the creation of web application where website describes the XHTLM document. These documents are connected to special java program, "beans", ...
0
votes
1answer
20 views
How to avoid repetitions / use constants in Facelets page?
In a Facelets page, I have various <h:inputText> and <h:outputText> components, which all need the same converter.
I'd like to avoid repeating the converter with all its parameters, like ...
0
votes
1answer
42 views
How to display only rendered rows and hide other in ui:repeat
I need to display only selected rows in <ui:repeat> from search result. Here's my code:
<h:inputText value="#{user.lname}" required="false" class="defaultText1 c_8" title="Search by ...
1
vote
1answer
31 views
Passing the backing bean as a parameter to a Facelet include
I have a Facelet that might be used in different applications.
I don't to copy it, but reuse it. I need to pass the backing bean that will manage the view as a parameter, as some logic may vary ...
5
votes
0answers
80 views
Migrate composite-component to custom-component
I have to migrate a composite-component to a custom-component. This example is rather simplified, but demonstrates the problem: the childs of my component (my:test) need to be rendered in another ...
0
votes
1answer
28 views
Updating form in own composite-components in JSF
I have the following (simplified, but the issue can be demonstrated) component my:slot
<composite:interface>
</composite:interface>
<composite:implementation>
<h:panelGroup ...
0
votes
1answer
34 views
How to create initialized Spring bean (in session scope)
I am trying to create multi-tab (JavaScript tabs) interface for Spring/facelets application and I have s.c. window manager that holds array of windows (tabs). Each window (tab) contains Spring bean ...
0
votes
0answers
11 views
Xerces library causing a FaceletsExcpetion on an exisiting page
I get the below error when trying to access an existing page in our application. The XHTML page itself has not been modified for a long time and it used to never throw this error before.
After some ...
0
votes
1answer
37 views
php echo equivalent in JSF
I would like to know if there is a php echo equivalent in JSF. I would like to publish html from my bean to my facelet.
This is because I want to add three different primefaces components each time ...
0
votes
1answer
41 views
sending paramters from one Facelets page to another
Whenever we want to send parameters from one jsp page to another we use the following lines of codes, what if we want to send paramters in JSF, like sending one parameter from one Facelets page to ...
0
votes
1answer
55 views
Unknow tag .xhtml jsf <f: selectItems />
This is the Facelet:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns ="http://www.w3.org/1999/xhtml" ...
0
votes
1answer
120 views
Override primefaces css with a custom one
i made a custom style sheet named mycustomstyle.css to override the style sheet provided by primefaces, i placed the link to my style sheet inside the <h:body> so that it overrides the one ...
0
votes
1answer
61 views
How to remove padding from p:panel content
I have a <p:panel> with id X and i want to remove the padding from its content X_content the generated HTML for the panel content is:
<div id="X_content" class="ui-panel-content ...
0
votes
0answers
58 views
How to retrieve value of a ui:param in the backing bean of same page
i want to retrieve the value of ui:param in my backing bean but from same page not while navigating from page to pagei tried :
FaceletContext faceletContext = (FaceletContext) ...
0
votes
2answers
120 views
Javascript in JSF - outputScript with no library, no name, and no body content
I want to implement a pacman game in an jsf/primefaces project.
The game can be found here.
Here is my jsf page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
1
vote
0answers
60 views
Facelets template not found in a common jar in an exploded deployment
Here is my Facelet template location : WAR/WEB-INF/lib/common.jar/META-INF/resources/m0/template.xhtml.
It throws the following exception when the war, and the jar in it, are deployed as exploded ...
1
vote
0answers
28 views
ui:decorate supersedes ui:composition and ui:include?
this is a summary of what i understood:
ui:decorate
can use ui:define
can use ui:param
can have external content
ui:composition
can use ui:define
can use ui:param
-> can NOT have external ...
1
vote
1answer
77 views
Implement a site-wide param to change the locale with JSF2 and CDI
Is there a way to implement a viewParam that can change the locale eg.
http://example.com/p1.jsf?lang=en
or
http://example.com/p2.jsf?lang=fr
perhaps without repeating
<f:metadata>
...
0
votes
1answer
117 views
Including a Facelet with FaceletContext#includeFacelet() doesn't work in JSF 2.0
I'm trying to inject a Facelet into a portion my main page programmatically using FaceletContext#includeFacelet() (I can't use a <ui:include>) and after reading the answer to this question, I ...
1
vote
1answer
351 views
How to show PDF document in JSP which is included via ui:include
I have included a JSP page into Facelets using <ui:include>. In JSP page I am able to get the PDF, but it displays content as plain text. How is this caused and how can I solve it?
JSP page:
...
0
votes
0answers
66 views
Domain based I18N with JSF2.0
I have to implement I18N based on domain using JSF2.
For example if the domain is
www.bookstore.com --> it should go to english site
www.bookstore.com.cn --> it should go to chinese ...
-1
votes
2answers
69 views
JSF Validation no wok in template
JSF validation are not working When i submit ,I under the myfaces(2.1.10) and mojarra(2.1.21) has tried, as same results.here is my code.Theoretically not execute onSubmit() and display error messages ...
1
vote
1answer
50 views
Datatable inside programatically added composite component
Referring to my earlier question (Programmatically create and add composite component in backing bean) I have succesfully able to add composite components from backing bean. Now I have a new problem ...
0
votes
1answer
74 views
Transient on EntityManager causing exception
I am using view scoped managed bean for my JSF application. Since view scoped bean needs to be serialized I have implemented Serialiazable. But problem is with the EntityManager. I tried bypassing it ...
0
votes
0answers
45 views
Action attribute of <p:commandButton> is not called
I am trying to call the addMoreStatus method by using the action attribute of the <p:commandButton>, but it is not called. I have also used ajax to see if the value of session variable changes ...
0
votes
0answers
175 views
Javascript does not work under JSF template again
I have found the thread answered by BalusC
It describes the exact problem I have. When I found it I thought I have found my answer as well, but for me the solution is not working. I had problems with ...
0
votes
1answer
65 views
Order of execution of f:event causing exception
I am trying to run f:event when the page loads. f:event is associated with the backing bean function init(). The init() creates the session object toIndex which is used in the getStatusList() ...
1
vote
1answer
71 views
RichFaces rich:autocomplete not firing valueChangeListener
Based on this Im implementing a rich:autocomplete with a dynamic list to the autocomplete. What i want to do next is, when the user edits this field to update another field based on its value.
I've ...
1
vote
1answer
111 views
Running a block of code in a backing bean whenever a Facelet page loads
I am using JSF to build a website. I want to run a block of code when the Facelet page loads everytime, I need use a session scope backing bean. I tried using the constructor of the backing bean to ...
1
vote
2answers
70 views
Difference in navigation by action=“xyz” and action=“#{bean.returnXyz}”
How is navigation from a Facelet page
<p:commandLink action="xyz.xhtml">
or a backing bean
<p:commandLink action="#{bean.redirect}">
public class Bean{
public String redirect(){
...
3
votes
2answers
149 views
External facelets template - does it get cached?
Due to a given requirement to show a header from an external source, we came up with the following setup (using JEE6 on Tomcat 7):
Our pages use a template regularly:
...
<ui:composition ... ...
1
vote
1answer
330 views
Primefaces DataTable - deleting with dialog deletes wrong entry
I have a table in a form. One of the columns in the table displays a row of buttons to edit and delete the table entries. When I delete an entry callign the controller from a button's action ...
0
votes
0answers
88 views
p:ajax in p:accordionPanel does not work on 1st click, but works from 2nd click on
I am using <p:accordionPanel> with <p:ajax> as shown below:
<p:accordionPanel id="menuAccrd" value="${pc_Login.menus}" var="menus"
style="font-size:10px;" styleClass="accordion2" ...
0
votes
3answers
85 views
EL evaluation in a JSF page is not sequential
I have an XHTML with ui:composition tag which I am loading on AJAX. I am using a jQuery Ajax GET to load the URL of this XHTML. In the loaded page, I have an EL expression and after that I am also ...
4
votes
1answer
247 views
Programmatically create and add composite component in backing bean
I am working with a dynamic dashboard where users can pin and remove items as they like. Now I have a problem that I want to add existing composite component to the view from the backing bean. I've ...
0
votes
1answer
148 views
Dynamic Fields on JSF
I need to perform a web service (method) call just before load of a jsf page. The call will return a list of input fields that have to be displayed on my jsf page. The user can fill in the form and on ...
0
votes
1answer
93 views
How to invoke a helper method with arguments in EL
I have a list of values in a managed bean.
Values
120
70
30
60
However the requirement is to map these values to a Color in between red(0%
) and green(100%). I need to provide this converted color ...
0
votes
1answer
95 views
save as dialog box pop up on saving a file from context menu
I have taken a <p:contextMenu> for <p:graphicImage>, what I want to do is save the image to desired location by poping up a Save As dialog box. Is is it possible to launch a dialog box ...
0
votes
0answers
61 views
ajax event on right click
Is there any or event which will get triggered whenever someone right clicks on an image and tries to save an it. I am trying to implement a feature in my website where the user will get notified if ...
0
votes
2answers
176 views
Creating ICEfaces application example connecting beans and Facelets
I'm new in developing web applications and I installed the ICEfaces plugin. I found this tutorial to learn how to work with it and the first given example dont work in my IDE.
Its about the last ...
0
votes
3answers
122 views
How to load JSF / facelets library from a common directory?
We have a number of webapps that all use a certain JSF library. We'd like to place the library in a common location or on the main classpath. The trouble is that the system expects the library to be ...
0
votes
0answers
52 views
Using Facelets files from library in web app [duplicate]
Is it possible to use Facelets files in my web application from a JAR that I have included in /WEB-INF/lib?
Structure is like this:
web module
WEB-INF
lib
common-component.jar
pages
...
0
votes
1answer
106 views
how to suppress MyFaces console html warnings?
We are getting ready to move our JSF 2 (MyFaces with Facelets pages) application to Production soon. Currently our console logs (SystemOut.log on WebSphere v8) are filling up with vast amounts of ...
0
votes
1answer
127 views
Populate PDF as a pop-up window, jsf web application
I am new to web programming.
I have a web application in JSF2.0 and i need help.
The application needs a pdf to be embedded in a pop-up window (with out disturbing the current page). The logic to ...
1
vote
1answer
160 views
how to replace the first message of p:growl primefaces
I want to use p:growl for the validation of inputs of datatable row editing
but the problem is that the validation message is written twice on the p:growl
how can I replace the first by another text ...







