PrimeFaces is a JSF component library that ships with a large set of rich components which utilizes jQuery and jQuery UI under the covers. It supports the jQuery UI ThemeRoller CSS framework. There is also a specific set of rich components for mobile devices.

learn more… | top users | synonyms

0
votes
0answers
56 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" ...
0
votes
0answers
18 views

Primefaces SelectManyMenu Converter not Converting

I am using a converter throughout my system which uses the following annotation: @FacesConverter(forClass = MyConverter.class) this works fine except for SelectManyMenu where the conversion doesn't ...
0
votes
0answers
50 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"?> ...
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
1answer
53 views

java primefaces how to show enum name of int value from database on xhtml

Here is the situation and I really don't know what to do. I want to persist months with jpa and enum where months will be persisted as corresponding int values. I read a lot of similar questions and I ...
0
votes
0answers
47 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 ...
-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
137 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
63 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 ...
1
vote
1answer
37 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
48 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
32 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
0answers
54 views

Uncaught ReferenceError: $ is not defined in JSF Primefaces

I'm doing a Primefaces project using Maven and Glassfish. I am following this tutorial by mkyong. I have followed all the steps but when I run my project, I get this error in my browser console. ...
0
votes
1answer
27 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 ...
0
votes
1answer
59 views

Primefaces tabview: set the active index on tab change

I've got a tab view that contains two tab. When I switch from tab 1 to tab 2, I'm calling some code that executes a validation and updates some values. Depending on the result of this validation, I ...
0
votes
0answers
30 views

Primefaces dataexport to excel renders links as plain text

I need to export data to Excel spreadsheet using primefaces. I tried 3 options: Using standard HTML a href (In this case exported data contains no link at all) <p:column style="display: none" ...
0
votes
2answers
17 views

Primefaces:dialog minimizable option not working with modal[SOLVED]

While enable the minimize option in dialog box with modal as true, then by clicking the minimize, background modal[grey bg] not getting removed. And also, i cannot able to maximize the dialog, which ...
0
votes
2answers
36 views

Problems with Primefaces editor calendar galleria etc

I've just started using primefaces 3.5 and I'm dealing with a weird problem. 1. editor doesn't show up on the page 2. galleria only shows the images in a list 3.popups don't work at all 4. calendar ...
0
votes
0answers
18 views

after updating datatable inputText display its old value but outputText doesn't primefaces

I have this column in my datatable (as you see inputText and OutputText have sam value : I write it with js ) //formatting the code <p:column headerText="Taux Payé"> <h:outputText ...
1
vote
1answer
72 views

How to position a p:dialog in Prime Faces after its resizing

I have a Prime Faces p:dialog that has been resized while new components are inserted when opened ('show' state). However its position doesn't change and it's size is increasing from the down left ...
0
votes
2answers
24 views

Dataexporter pdf header position

I'm using dataexporter to create a pdf of a data table, in my data table the header of the columns is centralized, however the pdf version of the same columns is align to the left. how can I make the ...
0
votes
0answers
34 views

Primefaces cant fill inputText in dialog after click contextmenu

I'm using Primefaces Datatable-ContextMenu and Dialog to update a row (When after click to contextmenu it opens a dialog which contains will update object's fields in <p:inputext />). I have ...
0
votes
1answer
27 views

Error while deploy Primefaces-Extensions example, why?

Error while deploy: Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.RuntimeException: ...
0
votes
1answer
22 views

Is there a way to apply styles to columns in a p:selectManyMenu?

Is there a way to apply styles to columns in a p:selectManyMenu? <!-- Cut down version of the code --> <p:selectManyMenu id="myMenu" value="#{myBean.myEntries}" var="ent" ...
0
votes
1answer
56 views

How can I get item label from selectOneMenu @ JSF page

I'm dealing with a wizard in primefaces like this one: http://www.primefaces.org/showcase/ui/wizard.jsf I would like to get the raw text from a selectOneMenu (from one of the tabs) and show it in ...
0
votes
1answer
31 views

Dynamic tabIndex-attribute in JSF/Primefaces

I'm facing an issue with JSF / Primefaces. I'm using the tabIndex-attribute on every component in my JSF-application to allow the user to step through the screens. I wrote some JSF composite ...
1
vote
2answers
47 views

Which Primeface component to use?

I have a requirement where I have to display & enter 24 hour values for a particular job. For a particular business there could be 100's of jobs. So basically 100 rows with 24 input fields. I ...
0
votes
1answer
39 views

Values of h:inputText inside p:treeTable are not processed

I want to process this form (valueChangueListener is not valid in real case). This is the back bean: @Component @Scope("request") public class TestBean extends PrivateBaseBean implements ...
0
votes
1answer
74 views

Primefaces datatable, item on multiple rows

I can not find a primefaces datatable example on how to make one item to be shown on two (or more) rows. I need to show an item in a datatable about like this: <table> <tr> ...
0
votes
0answers
43 views

Values of h:inputText inside p:tabView are not processed

I want to process this form (valueChangueListener is not valid in real case). This is the back bean: private List<Management> managements; //getters setters protected static final Logger ...
0
votes
0answers
47 views

Display Blob Image using primefaces

I want to display blob type image using primefaces. There is a error in the server log, and the page is displayed without the picture. I used the following code. Html code = <h:form ...
0
votes
0answers
52 views

JSF Primefaces reload issue, could this be CSS issue or any other?

In our web project we use JSF Myfaces, Primefaces 3.5. We have created our own primefaces theme for the project. I find the following odd problems, which I suspect are due the css/library etc, ...
1
vote
1answer
84 views

Disable specific dates on p:calendar

Is it possible to disable specific dates (for example: 15th May or 23rd June) on the PrimeFaces 3.5 <p:calendar> component? There is min and max, but I need to disable specific dates like public ...
0
votes
2answers
64 views

Primefaces datatable header alignment

I have a problem with primefaces datatable. As you can see there is an alignment problem with columns border and headers. Is this a primefaces bug or there is something wrong with my datatable? By the ...
1
vote
1answer
57 views

JSF + primefaces calling getter way too much times

I read all answers on this topic (not only) on SO, but none of this solves my problem. I have datatable: <p:dataTable value="#{reportBean.reportData.rows}" ...
0
votes
0answers
27 views

Transaction not successfully started

i can't find the mistake in my code. i have "Transaction not successfully started" error, and my code looks right, i hope finding help. this is my code: @Override public void updateDate(Date ...
0
votes
0answers
15 views

Treetable not updating

I am trying to refresh the treetable on file upload. Upload is working file but after that treetable is not working. My DocumentsController file is in ViewScope. Here is the code <p:layoutUnit ...
0
votes
1answer
31 views

display growl when page is loaded primefaces jsf2

I have this commandButton : <p:commandButton value="Enregistrer" action="#{reglementClientMB.ajouter}" process="@this @form" update="@form" > ...
-2
votes
1answer
51 views

jsf2 don't work ,url pattern

I created application with JSF2 Spring and Hibernate, but when I run it I obtain this error : Tag Library supports namespace: http://primefaces.org/ui, but no tag was defined for name: clock ...
0
votes
0answers
39 views

Liferay with PrimeFaces, display image -NOT using Path -

I'm developing a Liferay Portlet, using primeFaces. Several pages will feature DataTable elements, where one of the columns will have an image thumbnail. How can you present an image with PF ...
0
votes
2answers
75 views

Values of h:inputText inside ui:repeat are not processed

I want to process this form (valueChangueListener is not valid in real case). This is the back bean: public class TestBean extends PrivateBaseBean implements Serializable { private ...
0
votes
0answers
26 views

ContextMenu in GMap primefaces component

Does anybody know how to create a primefaces contextmenu that will be launched on right click on GMap? Normally the code should look like this: <p:gmap id="gmapElement" widgetVar="gmtls" ...
0
votes
1answer
33 views

Add and delete nodes in primefaces treeTable

I have This: <p:treeTable id="#{treeTableId}" value="#{tableBeanRoot}" var="element" resizableColumns="true" selection="#{budgetTemplateElementBean.selectedNode}" ...
0
votes
0answers
28 views

How do I make p:dataTable in ui:composition more reusable?

I'm using PrimeFaces 3.4 and I have a series of .xhtml for the dataTables on a page. I would like to use one .xhtml for all the tables on the page and use ui:param when including that .xhtml for each ...
0
votes
2answers
50 views

PrimeFaces tags not recognised

I am new to JSF and Primefaces and have created a project with JSF2.0, Glassfish v3.0 and Jdk 6.0.Now want to use Primefaces tags instead of JSF tags. I have downloaded primefaces-3.5.jar and added it ...
1
vote
1answer
91 views

Allow only digits to the filtered textbox (search filter) of dataTable in Primefaces

Is it possible to apply such a validation to a filtered textbox provided by dataTable of Primefaces by customizing it. The maximum number of characters that this textbox can hold can be set by using ...
0
votes
1answer
47 views

How to implement web applications more efficiently?

I've been developing a website using JSF & PrimeFaces. At the time of development, I noticed that there're 2 bottlenecks for any web applications. Correct me if I'm wrong. The bottlenecks are: ...
0
votes
1answer
10 views

Adding image to header - is #{request.contextPath} returning contextname/faces instead of just contextname/?

I am attempting to add an image to the header of my layoutUnits (specifically layoutUnit = North but I can work it out). However, while it works for pages before login, it stops working after I login. ...
0
votes
1answer
71 views

PrimeFaces dialog lazy loading (dynamic=“true”) does not work?

I have recently changed all my beans from RequestScoped to ViewScoped. Suddenly, the lazy loading of dialogs does not work. I am using PrimeFaces JSF library. <html> <h:body> ...
0
votes
0answers
34 views

Is possible render TreeTable's cell in Primeface?

I would to know if is possible make some renderer in each cell, like is used TreeTable's renderer in Swing, so is possible to do the same in primefaces ? I need to edit the TreeTable to add in ...

1 2 3 4 5 112