Tagged Questions
-3
votes
0answers
15 views
The OmniFaces - validation after lost focus event [closed]
Is it possible to execute that validation before submit? right after losing focus from validated field?
0
votes
1answer
19 views
JSF get username of windows logged user ldap
I want to create application that doesn't have manually authentication. The application have to use the username of the current logged windows user. Maybe I must configure to connect to the ldap ...
0
votes
2answers
31 views
JSF + REST WebApp running on Apache Tomcat 7
I have a simple JSF WebApp with a backend service running on Tomcat 7.0.34
If you have a JSF ManagedBean responsible for processing the data model for rendering UI Components, how can the backend ...
0
votes
0answers
17 views
How to bind relational table to a jsf table component dynamically?
Imagine there is a dropdown list of relational tables from a database. When 1 of them is selected, the dropdown is set to auto-submit where the web application will display the relevant table.
...
0
votes
0answers
12 views
rich:calendar “E is undefined” Issue
Most of the time the calendar works fine. But sometimes clear the cookies and run the application, on that time the error occurs "E is undefined". After this the calendar wont work.
Firebug error
...
0
votes
0answers
31 views
How to get TextField value on a web application which are dynamically created?
I am trying to create a web application using Netbeans Visual JSF, which enable users to create relational table through a GUI. These are snapshot of the codes.
CreatePage.jsp
<h:panelGrid ...
0
votes
1answer
41 views
Download pdf file from tomcat folder using JSF
Hi I am trying to implement pdf file download functionality by this way .
/* test.xhtml*/
<p:commandButton actionListener="#{backingBean.download}" update=":form"/>
/BackingBean.java/
...
-1
votes
3answers
33 views
JSF 2: Is it a good practice to use cookies instead of session? [closed]
I'm using JSF 2.0 and it's been a while since I've been searching for encrypted cookies as an alternative for session. I've heard there's something like this in "ASP.NET MVC 4".
So the question is: ...
0
votes
1answer
27 views
Localization in JSF. The messages from a imported jar are always in english
I have and java web application where the internationalization is working perfectly.
But I want to import another .jar, who has internationalization too, working perfectly when it's used in desktop ...
1
vote
1answer
42 views
Faces Servlet - ClassNotFound Exception
I am developing a sample application using JSF 1.2 and PrimeFaces 3.5. I have RAD in my desktop and created a new dynamic web project. I have written xhtml file with primeface editor tag. But, when I ...
0
votes
1answer
31 views
Get a managed bean reference in a restful web service
i'm tryng to combine jsf and Rest in my web application.
My managed bean(eager=true) starts with the application, gets async data from an external api and adds this data into a List.
I have to make a ...
0
votes
1answer
29 views
Display date and time in JSF without miliseconds
I'm getting datetime from my PSQL database in way:
2013-06-17 16:07:31.885
I'm trying to display it without miliseconds at the end of it, I display them in a way:
<h:outputText ...
0
votes
0answers
18 views
ClientResponse return response status of 404 Not Found
mycode
ChatuserClient client = new ChatuserClient();
ClientResponse response = client.findAll_XML(ClientResponse.class);
GenericType<List<Chatuser>> genericType = new ...
-1
votes
0answers
25 views
Attaching a static non-displaying filter to a PrimeFaces data table? [closed]
I am working on a project that uses PrimeFaces and i am trying to attach a static non-displaying filter to a data table(by that i mean i want to filter the data by the logged in user). How can you add ...
0
votes
1answer
29 views
How to prevent showing p:dialog when no row selected in p:datatable?
I have jsf page with p:datatble and control buttons for adding/updating/deleting data from table. When user clicks on button, p:dialog is showing.
Here is my users.xhtml:
<h:form id="form">
...