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.
7
votes
0answers
162 views
Mutually restricting begin and end date-times using p:calendar (no validation)
We have a requirement to present two p:calendar components to the user, representing a start and end date each. Both datetimes have dates, hours and minutes.
PrimeFaces has perfect mindate, maxdate, ...
3
votes
0answers
153 views
p:dialog gets closed on validation error of a submit with ajax=“false”, how to keep dialog open?
I have the following <p:dialog>
<p:dialog id="dlgDownload" header="#{appmsg['header.download.popup']}" widgetVar="downloadDlg" resizable="true" modal="true" closable="true" width="640" ...
3
votes
0answers
228 views
sortMode=“multiple” and lazy=“true” in <p:dataTable> clears multisort meta during pagination
I just enabled multiple sorting in the showcase code for "DataTable - Lazy Loading"
datatableLazy.xhtml
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
...
3
votes
0answers
423 views
p:selectOneMenu value set to null, when in p:inplace in refreshed tab view
I'm using p:tabView to split the editable data into the sections. All edit elements are places inside p:inplace components. The problem is specifically with p:selectOneMenu component.
When the whole ...
3
votes
0answers
495 views
Duplicate id when dynamically adding new component to JSF component tree
Using JSF 2.1, Mojarra 2.1.3, Glassfish 3.1.1, and PrimeFaces 3.3.1
I'm trying to handle processing field level security in JSF, on the preRenderView event, and having issues when needing to add a ...
3
votes
0answers
272 views
primefaces fileUpload miniatures
I want to upload multiple files but after I execute upload the miniature dissapears and I don't know which files I uploaded. Is there a way to keep miniatures with names after uploading?
2
votes
0answers
48 views
Fitting text into the Events of Primefaces Extensions' Timeline
The problem is, that I want to fit the text into the box-event of the timeline. How can I set this?
<p:layoutUnit id="center" position="center">
<pe:timeline id="timeline" ...
2
votes
0answers
96 views
Primefaces selectOneMenu displaying when label is empty
For some reason selectOneMenu is showing when selecting an option with an empty label.
When first loading the page, it works fine, but if I select the blank option in my list, it displays ...
2
votes
0answers
90 views
Is the Primefaces p:editor safe to use?
I mean, the primefaces p:editor uses html to structure the text, so I have to set the escape attribute of h:outputText to false, to show the output without html tags.
I was trying to play around a ...
2
votes
0answers
384 views
JSF2 or primefaces p:selectManyCheckbox styling with icons
One question who styled manycheckboxes with icons?
<p:selectManyCheckbox value="#{Step4Bean.selectedItems}" id="tag-list" >
<f:selectItems ...
2
votes
0answers
132 views
Primefaces selectBooleanCheckbox not displaying in the correct position
I have a dialog which will show a pop-up windows with 2 checkbox, the first is checked and the second is unchecked as the code below:
<h:panelGrid columns="2" ...
2
votes
0answers
188 views
Bind PrimeFaces p:wizard to composite component
I need to have access to a PrimeFaces wizard from inside a composite component. I use Mojarra 2.1.13, PrimeFaces 3.4.2 and Spring Web Flow 2.3.1.RELEASE. My facelet looks like this:
<html ...
2
votes
0answers
78 views
Ajax Call method more than Once in jsf
I have a Composit Component that use Ajax on <p:selectOneButton/>, when Ajax call the actionListener on <p:commandButton/> it calls 10 times then run the method. I think the problem cause ...
2
votes
0answers
133 views
FB.ui() gives errors unless display: 'popup' is specified
I'm having a really frustrating problem with displaying dialogs using FB.ui() within my Facebook app.
Basically I have the following function that I use to invoke the dialog window:
function ...
2
votes
0answers
153 views
Selenium IDE does not change PrimeFaces control
we have a web form developed by Java and PrimeFaces framework. In this form we have a ui control which is called slider. It contanins a button on a horizontal line. When we move the button it gives us ...
2
votes
0answers
63 views
Update component on template.xhtml from test.xhtml
I have a menutab on my template that i am using on every page. I would like to update a component from the template from another paged which is based on the template.
Its working like just any other ...
2
votes
0answers
226 views
PrimeFaces p:blockUI blocking a certain component dynamically (on JSF EL condition)?
How do you make PrimeFaces p:blockUI block a certain component dynamically, that is on EL condition?
USE CASE:
The condition at hand is basically a mode that the user can be in on a page: if there ...
2
votes
0answers
566 views
Implementing a dynamic ContextMenu for a Primefaces multi-select Datatable
I have a paged PrimeFaces Datatable with a context menu, and i wish to implement multi-select, where the menu items in the context menu will depend on the number of items selected, as some actions ...
2
votes
0answers
228 views
Primefaces schedule component is not showing up
I am a JSF 2.0 newbie, and I am trying to build an scheduler.
So far everything has gone pretty well in terms of using primefaces and JSF tags. However I have a hard time using p:schedule tag.
At ...
2
votes
0answers
123 views
primefaes submenu and layout
I have a layout and I need to show a JSF page in the center position when a menu item is selected, and if I select other menu item it must change to this and so on. I dont know how to do this, all the ...
2
votes
0answers
131 views
<p:editor> does not show toolbar in Android environment
I have a problem with primefaces editor . It run smoothly on my chrome and IE
However, it does not display its control on my android emulator when I connect to my web on localhost .
This is my ...
2
votes
0answers
416 views
How do I access the current TreeNode in primefaces tree (in mark-up or programmatically) without binding to UI component in managed bean?
I am using Primefaces 3.4.1 with the 2.2.0-m05 milestone build of Oracle's JSF 2.2 implementation. I am also using Spring 3.1 for dependency injection and some AOP.
I am trying to use the ...
2
votes
0answers
82 views
Starting a long task after page load
I'm currently working on a jsf based webapp. I'm using jsf 2.0, servlet 3 and primefaces.
The idea is:
After a User logs in he gets an info panel. This panel shows a loading sign. In the backend a ...
2
votes
0answers
211 views
Using return/enter key to save edited cell in Primefaces 3.4 in-cell editable datatable
As the title says, instead of clicking on the "Save" button after switching to edit-mode, I would like to have the same functionality when pressing the enter/return-key.
I attempted to do this with ...
2
votes
0answers
557 views
Primefaces dataTable in composite component and rowUnselect event
Implementation and Purpose:
I implemented a composite component with a primefaces p:dataTable in it. I also added p:ajax listeners to the table for rowSelect and rowUnselect events whose listeners ...
2
votes
0answers
329 views
In JSF , how to list in editable datatable without initialing in init block or in constructor
In my application I am using primefaces editable datatable, those List(cmFieldsList) values need to be rendered dynamically based on request parameters(blkcode).
If I initialize the list in ...
2
votes
0answers
426 views
PrimePush chat is not working
my target is on page load to subscribe two users in chat (teacher and student), and they can send messages to each others, so here's what i did:
1- BackingBean:
package com.myapp.beans;
import ...
2
votes
0answers
1k views
Clicking on p:selectBooleanCheckbox should enable/disable the input text
When the checkbox is selected, the corresponding input text should be enabled. But the permit property is not set, nor updateRoles listener is called. I get no exceptions, no indication of something ...
2
votes
0answers
283 views
Primefaces ScrollPanel with toggleable Fieldset
I have a Primefaces scrollpanel that has a datatable along with a Primefaces expandable Fieldset which is collapsed by default. My scrollpanel has fixed height. now the issue is whenever I Expand the ...
2
votes
0answers
288 views
Drag Drop behavior between Data table and Tree node or vice versa in JSF + Primefaces
I know that Prime faces has not implemented drag drop behavior on Tree nodes but is there a workaround to achieve this behavior for now or is that not possible at all. I am developing a site where I ...
2
votes
0answers
791 views
p:commandButton doesn't call bean's method in an <ui:include> page
I'm having a problem when I include dynamically a page with <ui:include>, the action and actionlistener associated with the <p:commandButton> component is not being invoked.
I've tried to ...
2
votes
0answers
1k views
Using PrimeFaces <p:ajax>, fire up Ajax in inputText only on keystrokes that change the field
I am using PrimeFaces and have a p:inputText field where I need to update some components on the view based on the latest keystroke inside that p:inputText.
Here's the code:
<p:inputText ...
2
votes
0answers
255 views
JSF JSF1064: Unable to find or serve resource,
In my jsf 2 (primefaces 3) application, I designed and used a page not found (404) for any request that is not match a page. I works fine for all requests except for the jsf resources such as ...
2
votes
0answers
267 views
primefaces drag and drop : content is not visible (behind other data) while dragging from datatable
I implemented a drag and drop very similar to the one described in the primefaces drag drop datatable example (http://www.primefaces.org/showcase/ui/dndTable.jsf)
One column is draggable.
However, ...
2
votes
0answers
312 views
How to limit to store the no of views in session for prime faces application
We are using primefaces 2.2.1 version in our application. We would like to restrict to store the no of views storing in session to 3. I have configured my web.xml like as :
<context-param>
...
2
votes
0answers
352 views
p:selectOneMenu with converter shows only 1st item as item value while h:selectOneMenu works fine
I have this component:
<h:selectOneMenu value="#{requestController.backing.selectedRequestVO.requestSituation}" converter="Situation">
<f:selectItems ...
2
votes
0answers
222 views
PrimeFaces overlayPanel outside its container
I'm trying to display an OverlayPanel into a Carousel, but this panel is wider than the Carousel, so its contents are not completely shown.
I've tried adding a z-index style value to the panel, but ...
2
votes
0answers
864 views
PrimeFaces DataTable selection goes null on dialog.show()
I've got a BIG problem using Datatable and Dialog together.
I need to click on a datatable's row and showing a dialog which loads data from datatable's selected item.
Selection goes fine, but the ...
2
votes
0answers
569 views
Why would adding a programmatically rendered panel break ajax beahvior for a declared Panel?
I have the following frontend code using primefaces
<p:panel binding="#{widgetBean.panel}"/>
<p:panel header="Widget 2" id="declaredPanel" ...
2
votes
0answers
320 views
How to draw a rubber band line on a Google Map (preferably with PrimeFaces)?
I found this link for drawing a rectangle on a google map and was able to make it work as a test just using the raw google map code.
Google map rectangle example
However, it really does not fit into ...
2
votes
0answers
844 views
Primefaces Tree does not expand if you select a node first
I am using primefaces 2 and a backing bean to display the tree component in two different facelets pages. On the first page, the tree displays, expands, and I can select items from it just fine.
...
2
votes
0answers
2k views
JSF : dynamically loaded page commandButton not working
I have a page that contains a PrimeFaces accordion panel, in each panel is a PrimeFaces datatable. Below the datatable is a button "Add study" for example and when this button is click I want to ...
1
vote
0answers
44 views
Command button does not invoke action method, but only refreshes the page
I'm using JSF 2.1 and PrimeFaces. I have the following command button on contact.xhtml:
<h:head>
<p:panel id="panel" header="New message" style="margin-bottom:10px;">
...
1
vote
0answers
15 views
Drag and drop file upload strange behaviour
I'm using Primefaces 3.5 and I have ran into a pretty disturbing problem. The component looks like this in the xhtml:
<p:tab id="installApp" title="Install application">
<h:form ...
1
vote
0answers
32 views
Primefaces with Mongo DB Demo application?
As per Primefaces their component well supported by JSON Object so its possible to use MongoDB with Primefaces application .Any one know how can i use MongoDB in place of Postgresql which currently i ...
1
vote
0answers
14 views
Dialog with fileDownload is not getting closed
The following code works fine that is the dialog with the widget var as dialogVar does gets closed. The button is placed inside p:dialog
<p:commandButton id="btnId" value="Button" ...
1
vote
0answers
37 views
JSF and Primefaces; form not passing validation
Disclaimer: school project.
Hello,
I'm having a strange issue which has hold me back for days.
The project im working on is a car tracking and paying system.
I'm trying to add a web page to my ...
1
vote
0answers
42 views
p:ajaxStatus doesn't work for the second request
Prior to showing the edit dialog, a loading gif is used to display the progress.
<p:dataTable id="accounts">
<p:column>
<p:commandButton
...
1
vote
0answers
42 views
Update primefaces growl from inside ui:component
I have a page where the form contains a primefaces growl, and when adding message, and updating works very well, shows up and then dissappears as I wanted.
I added templating to some of my pages and ...
1
vote
0answers
20 views
can jsf/primefaces application be hosted out of AWS
Is it possible to use AWS services to host an application build in following technologies
jsf2/primefaces3
tomcat 6
mysql 5
Apart from these I need email services, blog etc a conventional java ...






