JavaServer Faces (JSF) is a model-view-presenter framework typically used to create web applications. Using the standard components and render kit, stateful HTML views can be defined using JSP or Facelets tags and wired to model data and application logic.
0
votes
1answer
7 views
JSF Ajax not rendering until a page refresh
Here is my view:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
...
1
vote
1answer
15 views
How to debug sessionscoped beans?
Imagine I have a bean which is SessionScoped. ( Call it: Bean A )
When I request a page that accesses this bean, this bean is initialized and some of its properties are set accordingly.
Then I ...
-1
votes
0answers
8 views
Object persistance on jboss7.1
I would like to make the persistence of objects on a j2EE project with EJB and JSF framework . When compiling on jboss7.1, I encounter this error.Could someone help me.
Thanks, Manuel
...
0
votes
0answers
15 views
dynamic images in datatable using primefaces, images not showing in datatable
I am using primfaces 3.5 version to show images from my database in datatable, but unfortunately instead of actual images "image" is getting written in column, here is my xhtml file
<?xml ...
0
votes
0answers
15 views
How to get data to mannagedBean JSF
I have Gmap from PrimeFaces and get my location from Google Api geolocatior in javascript, how to i get my location on button to gmap and into bean, beacuse i try with Jquery to inputTextfild but JSF ...
0
votes
1answer
15 views
primefaces inputText desn't work with ajax event
i used ajax <f:ajax> with primefaces inputText to fire specific action onBlur event but it doesn't, i tried also <p:ajax> but it deosn't work too!
<p:inputText id="Name" ...
0
votes
1answer
14 views
Dynamic JavaScript with ID and custom type
I need to get a content like
<script type="text/vnd.graphviz" id="genealogy">
digraph genealogy {
ratio="auto";
rankdir="BT";
edge [style=solid ...
0
votes
1answer
15 views
Factory class supporting JSF ManagedBean class
I have a a JSF web application and an example Managed Bean called User:
@ManagedBean
@SessionScoped
public class User {
private String name, surname;
public String getName() {
return ...
0
votes
1answer
9 views
Annotated SQL variable in facelets generated from entity classes
When generating facelets with CRUD functionality in JSF/JPA in Netbeans 7.3, variables are created in the annotations that specify the SQL statements used to update respective view. The variables are ...
-3
votes
0answers
32 views
JSF AJAX update
How can I resemble the behavior of Facebook timeline or twitter tweets in the way they get the latest updates, push down the current once to make space and display the new once.
Without rendering the ...
0
votes
2answers
22 views
Forward parametr in page
I have a panelAdmin page and when i click adminList i forward the parameter
<h:commandLink value="Admini" action="#{userMB.adminList()}">
<f:param name="userId" ...
0
votes
1answer
13 views
SESSION TIMEOUT PRIMEFACES?
i want to implement a countdown clock, and then finish my actual session when the time finish and redirect me to the login page, how can i do that i PRIMEFACES ... I dont want to use IdleMonitor ...
0
votes
0answers
13 views
Retrieve form is not filled selectOneMenu
I'm newbie using JSF and primefaces.
I have a form containing 3 selectOneMenus which are filled from three converters respectively.
When saving data it is saved fine, but when on the same form to ...
0
votes
2answers
34 views
Submit from multiple forms
I have several forms in my jsf application and I want to submit from some of them my data to persist the data in the database.
My xhtml looks like that:
<h:panelGroup id="tempOptionGroup">
...
0
votes
0answers
13 views
Convert a PHP + JQuery to JSF + RichFaces 4 application
I have a PHP page which is invoking a jersey REST web service trough ajax and dinamically populate an html pages by appending element with jQuery.append.
I have been asked to translate this to a JSF ...