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.

learn more… | top users | synonyms

0
votes
0answers
22 views

primefaces creating a dynamic dashboard

Following the example at http://www.wobblycogs.co.uk/index.php/computing/jee/49-dynamic-dashboard-with-primefaces im trying to create a dynamic dashboard. Copying the code works 100% perfeclty, but ...
0
votes
1answer
32 views

How to call to get the source page which requets another JSF page

I want to know how to get the name of the page that requests another JSF page to further call specific methods in the bean according to the source page, i don't want to use <f:event ...
0
votes
0answers
46 views

SPA based on liferay&JSF - without MV*-Framework, only jquery?

I'm worrying my brain about a project, that seriously keeps me from sleeping. SCROLL DOWN TO THE QUESTIONS IF YOU WANT - NEXT PART IS JUST FOR CLARIFICATION I am working as Frontend-Developer, and ...
0
votes
1answer
28 views

ajax listener was not updated the panels for selected item in primefaces

Iam trying to update a panel based selected data using primefaces selectonemenu and ajax listener was taken care by updating the panels.But my panel was not updated and selected item was shown at ...
0
votes
0answers
25 views

How to stop a4j:ajax component in richfaces from reloading the complete default component?

I am developing application in richfaces 4.x . I am stuck while using the rich:select along with a4j:ajax . Following is the code snipplet- ` <rich:panel id="test" style="min-width: 604px; ...
0
votes
1answer
35 views

How to initialize variables in a session scoped bean

I have two booleans that controls the render of some components, the problem is that the variables saves there last state until the session expires, i <f:facet name="footer"> ...
0
votes
3answers
38 views

how to transfer parameter from managedbean to a jsf page

I want to transfer a parameter from a jsf page to another jsf page. Like this: a.xhtml <h:form> <h:commandLink class="navi" value="press" action="#{Bean.action}"> ...
0
votes
2answers
48 views

Passing variable to another view: best practice

I've got a form in a view, for example say: form.xhtml <h:form> <h:panelGrid columns="2"> <h:outputLabel value="Name" /> <h:inputText value="#{bean.name}" ...
0
votes
1answer
40 views

Target unreachable CDI

I try to connect my web application with CDI but it don't want to work... There is an beans.xml file in WEB-INF. When I try to access fields from the CDI-Bean I get an ...
0
votes
0answers
90 views

How do I resolve this probem using Calendar and ComboBox with PrimeFace?

I use a PrimeFaces form with InputTexts, ComboBoxes and Calendars, but I have a problem when I select a date in Calender or a value from the ComboBox. Screen Capture. Form code: <h:form ...
0
votes
1answer
41 views

Can't get value of Map<BigDecimal, String> by key

I have a map like Map<BigDecimal, String> functions = new HashMap<BigDecimal, String>(); When I try to access the value of map from a JSF page, it displays nothing. I checked the size ...
0
votes
1answer
34 views

JSF selectOneMenu - setting value in bean

I have selectOneMenu <h:selectOneMenu id = "current" value = "#{helloBean.currentLanguage}"> <f:selectItems value="#{helloBean.categoryLanguages}"></f:selectItems> ...
-4
votes
0answers
23 views

Bypass login page for authentication using richfaces and jsf [closed]

I am using JSF 2 and Rich faces 4.2. I have one login page to login (login.xhtml) [hits login controller] to my application. This accepts 3 fields user id, password and account #. Now, if somebody ...
0
votes
0answers
23 views

Primefaces Wizard: values, actions and validations not working after first step

We are using PrimeFaces 2.0 wizard to build a complex registration. In the first tab, all actions works fine (ajax actions executes, validation performs, values are binded to bean, etc), but in the ...
0
votes
0answers
21 views

When using lazy dataTable another component does not get updated / 2nd component data is one request behind

I have a PrimeFaces p:dataTable and enabled lazy loading by implementing a LazyDataModel. The dataTable holds search results, so when doing a search request the search service only retrieves the ...
-4
votes
0answers
31 views

What are the exactly differences between Faclets, Servlets, JSF and JSP? [duplicate]

I hope somebody can answer this question what are the differences between these technologies?
0
votes
2answers
38 views

How do you navigate between two web apps?

If I have two web apps http://www.abc.com/app1 and http://www.abc.com/app2 how do I handle navigation between the two? I would like to be able to navigate to app2 using links in a menu that I have ...
0
votes
2answers
39 views

JSF SelectOneMenu get Entity

I am trying to obtain a Customer entity from a JSF SelectOneMenu component: The classes I have are as follows: Customer Entity @Entity @Table(name="CUSTOMERS") @NamedQuery(name="Customer.findAll", ...
1
vote
1answer
25 views

how getting BufferedImage inside <h:graphicImage />

byte [] imageInByte = event.getFile().getContents(); InputStream in = new ByteArrayInputStream(imageInByte); try { BufferedImage bImageFromConvert = ImageIO.read(in); } catch (IOException e) { ...
0
votes
1answer
21 views

How to set visibility of a f:selectItem into p:selectOneRadio?

I have a p:SelectOneRadio with 4 options in my form. I would like to set the condition Rendered to false only in one f:SelectItem, depending on user profile (stored on session) E.g: If the user is an ...
0
votes
1answer
17 views

Prettyprint XML

We have some XML stored as a blob in a MySQL database, and display it in a rich faces modal panel as raw text via a servlet. We'd like to use google prettyprinting (or another if anyone thinks there's ...
0
votes
1answer
40 views

Override Primefaces Messages in custom properties file

I want to override some primefaces defaults. According to this link Primefaces default messages.properties I wrote a custom message properties: primefaces.captcha.INVALID = {0}: Erro de ...
-2
votes
0answers
25 views

Hibernate Entities dosen't work after database modification

i have an application works good ! and i have to change my database structure ! and when i changed it ! and i generate my model classes with hibernate i got this exception ! HCANN000001: Hibernate ...
0
votes
0answers
35 views

Unsigned long converter in JSF

The following <f:viewParam/> sets a querystring parameter to a JSF managed bean. <f:view> <f:metadata> <f:viewParam name="id" id="paramId" ...
-3
votes
0answers
26 views

p:commandButton not execute f:setPropertyActionListener in @Requestscope [closed]

I try to get the bean object in p:dialog by set the beanObj in setPropertyActionListener at p:commandButton with @RequestScope. its return a null value pls help me.
0
votes
0answers
22 views

JSF update component on every ajax request

Hi i want to render the JSF messages as bootstrap alerts <ui:repeat value="#{facesContext.messageList}" var="facesMessage"> <div class="alert"> <button type="button" ...
0
votes
0answers
52 views

Primefaces LazyLoading Table Select First Row by Default

Need Help on the proper way of selecting the first row of a primefaces datatable when the page is refreshed, load, sorted, paged <p:dataTable id="clientTable" widgetVar="clientTableVar" ...
1
vote
0answers
54 views

<rich:extendedDataTable> <c:forEach> Displaying a table via a “Map of maps”

I have a data model with structure : TreeMap < String, TreeMap< String, Double>> resultMap; This is stored in a SessionScoped ManagedBean. I am trying to output this via a dynamic < ...
1
vote
1answer
37 views

JSF Chrome Save Password on Login form

How do I get my JSF login page to prompt Chrome to save password? <h:form id="login-form" class="form login-form"> <h:outputLabel for="j_username" value="Email:" /> ...
0
votes
2answers
17 views

Modify action method value dynamically in JSF

I have a button which has to perform/call any of the two separate backing bean action method onclick. I have a parameter available in my form. Is it possible to modify the action="" value on the fly ...
1
vote
0answers
26 views

How to add a row to h:dataTable dynamically without rerendering the whole table?

I want to add a row to a <h:dataTable> dynamically, but I don't want to rerender the whole datatable, because the user could have some of the rows expanded etc., which would be closed after the ...
0
votes
0answers
47 views

jsf login page redirect error

i am developing jsf using primefaces and jpa, and my screen is not redirecting to main page still exist in login page without display. My web.xml file <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
0answers
13 views

How to display the values in open faces datatable?

Actually i am using open faces data table for selecting rows using the attribute < o:checkboxColumn rowDatas will automatically filter the currently selected rows .I didn't do any filter in Bean ...
1
vote
0answers
23 views

javascript error by a jsf “page forward”

I’m in the starting phase of a new jsf+primefaces project. I have to include some company-wide css and javascript files into our jsf template. The company-wide css/js are provided by a cms and we ...
0
votes
2answers
26 views

How to create a left navigation pane using facelets in JSF?

I need to create a user interface where the content changes every time the user moves to a new page. However, the header and footer remains the same. But, within the content, there is sometimes a ...
1
vote
1answer
31 views

Displaying an error message from a4j:jsFunction

I have this a4j:jsFunction below and an <h:message for="form" style="color:red" /> somewhere else on the page. <h:form id="form"> <a4j:jsFunction id="createEvent" ...
1
vote
1answer
58 views

Ideas on page load time measurements

The question is - how do you measure the time of page load, which technics you use, which recomendations can you give, and what positive and negative experience do you have. The trouble is that even ...
1
vote
1answer
23 views

Render multiple components with f:ajax

The wrong codes are: <h:form id="search_form"> <h:commandButton class="button" value="View" action="#{InfoBean.search}"> <f:ajax execute="search_form" ...
1
vote
1answer
32 views

Dynamically build the column values

I am building a component that will build a data table dynamically. I need to pass in the field name from the class and concatenate it to the var attribute of the table. example : "tblVar.firstName". ...
0
votes
0answers
46 views

Update ui:repeat partially JSF Primefaces

A have a page something like this: <h:form id="form"> <h:panelGroup id="panel"> <ui:repeat id="repeat" value="#{myBean.ojects}" var="item"> <h:panelGroup ...
0
votes
1answer
38 views

Create a converter for selectOneMenu at runtime

So I need to create a screen that is dynamic and provides information about objects wich have an unknown number of parameters, of various types (could be texte, could be date, and, thing that causes ...
-2
votes
1answer
29 views

primefaces fileupload and download PDF

Please, can anyone tell how can i implement some code to upload a PDF file to my database, using Primefaces ou just JSF? The entity property is a BLOB. att, Diego Sabino
0
votes
1answer
129 views
+50

primefaces partial processing not working

I would like to use partial processing but it does not work in my code. Does anybody knows why? <h:form id="frmVehicle" prependId="false"> <p:toolbar styleClass="form_toolbar"> ...
1
vote
0answers
59 views

java.lang.ArithmeticException: / by zero with Primefaces LazyDataModel

Until now, I had a JSF managed bean with LazyDataModel that looked something like the following. @Controller @ManagedBean @RequestScoped public final class StateManagedBean extends ...
0
votes
1answer
19 views

JSF getting property type list inside h:datatable

<h:dataTable value="#{SearchingBeans.list}" var="entry"> <h:column> <f:facet name="header"> <h:outputLabel>Photo</h:outputLabel> ...
1
vote
1answer
97 views

How do you run the beforerenderresponse event via managed bean

I have managed been which i am using to handle the events on an XPage The beforePageLoad event runs fine using EL to run the bean: ...
1
vote
1answer
36 views

JSF or PrimeFaces searcheable treeview control

Is there a JSF or PrimeFaces control which is a "searchable" treeview? I am thinking similar to the Eclipse "options", where you type in some text into a searchbox and the treeview autoupdates ...
2
votes
1answer
44 views

How to execute an event after a page is loaded with native JSF Javascript

I need to execute an event in JSF after a Facelets page is loaded, but I just can use JavaScript generated by JSF in this project (the similar function in jQuery is document.ready). Is there a way to ...
0
votes
1answer
27 views

how to change Datatable's column width

I have a datatable dynamic columns. How can i change this datatable's column's width. Width property of p:columns is not working. Do I need to override "ui-editable-column" style? <p:columns ...
0
votes
1answer
25 views

selectOneMenu ajax events

I am using an editable primefaces selectOneMenu to display some values. If the user selects an item from the List a textarea should be updated. However, if the user types something in the ...

1 2 3 4 5 303