Questions tagged [primefaces-extensions]

PrimeFaces Extensions is a lightweight open source component library for Java Server Faces 2.x. The project is built on top of the PrimeFaces - a rapidly evolving component suite. PrimeFaces Extensions consists of extended components missing in other JSF 2.x libraries or with improved components which already exist somewhere but don't work there smoothly.

Homepage: PrimeFaces Extensions.

Online Resource: Primefaces Extensions Showcase

305 questions
2
votes
1 answer

Primefaces extensions tooltip convert number

I have a p:dataTable with a pe:toolTip appended for all cells. The tooltip text is displaying ok, but it doesnt apply the f:convertNumber format that I have for my table cells: My columns look like this:
gsanchez
  • 21
  • 3
2
votes
1 answer

How to hide "ln" and "v" implementation/version related parameters for PrimeFaces resources

I'm using primefaces and primefaces-extensions in my application. For each and every resources like .css and .js files there's also an "ln" and "v" query parameters in the GET request for that resource, like…
Mostafa
  • 119
  • 1
  • 13
2
votes
1 answer

Restrict Ajax Mechanism while enter key is pressed in jsf component

Here is the selector for capture and disable enter key $(".disableEnterKey").keydown(function(event) { var charCode = event.charCode || event.keyCode || event.which; if (charCode === 13) { event.preventDefault(); return…
Abdul Gaffar
  • 581
  • 2
  • 7
  • 16
2
votes
1 answer

Decouple navigation and selection with JSF tree-like widget

I'm looking for a good approach to realize a tree-like JSF widget with the following requirements: means to expand and collapse tree branches ajax navigation through clicking on a tree node multi-selection of nodes / branches via tri-state…
Jens Piegsa
  • 7,399
  • 5
  • 58
  • 106
2
votes
1 answer

p:dataTable modify drop down filter on selection of other filter

I'm using primefaces datatable with filters. In filters I have two drop down select box. I want to modify second drop down box after selecting first. Here is my code:
2
votes
2 answers

pe:inputNumber value resetting to initial value inside p:tab

I have a on my screen where one of the tabs() has several with minValue attribute set to -9999999999.99. When I enter any value be it positive or negative and switch between the tabs, the input value resets to its…
Ashish
  • 117
  • 1
  • 13
2
votes
1 answer

Where's the implementation of #{exporterController.customExporter} in showcase

I am building a Java application using the JSF PrimeFaces library. I don't want to use an open source PDF library to generate reports. I have been trying to figure out to use PrimeFaces Extensions data exporter to generate a PDF file with many data…
Erick
  • 823
  • 16
  • 37
2
votes
1 answer

Primefaces extensions documentViewer show download status

I use the primefaces extensions documentViewer to show pdfs. The files are streamed, this means the backing bean provides an instance of org.primefaces.model.DefaultStreamedContent. If a big pdf is shown, it took some time until the viewer is…
opfau
  • 731
  • 9
  • 37
2
votes
2 answers

What versions of Primefaces extensions are compatible with the Primefaces 3.5?

I would like to know what versions of Primefaces extensions are compatible with the Primefaces 3.5?
2
votes
2 answers

Using ckeditor in jsf page

How do I use a custom CKEditor in a jsf page ? I'm having lots of trouble trying to implement it. What I did: I made a custom CKEditor with the ckEditor builder Downloaded and placed it in my webcontent folder. test.xhtml page:
Ced
  • 15,847
  • 14
  • 87
  • 146
2
votes
2 answers

p:dataExporter selected rows only

I have a with the multiple selection checkbox. I want to export only some rows to my pdf. Right now when I try to export based on the selected rows it gives me only the rows from the top. For example if I have 10 rows in my datatable…
Arun Raja
  • 1,554
  • 16
  • 26
2
votes
1 answer

pe:triStateCheckbox doesn't work with p:ajax

I'm using PF 5.1 + PF Extensions 3.0.0 + OmniFaces 1.8.1 on WAS 8.0.0.10 Trying to make the following example from here but listener not called when I change state of a component, neither error is given. This is my code of JSF…
Anatoly
  • 5,056
  • 9
  • 62
  • 136
2
votes
2 answers

Unable to paste the context in Primefaces Extension pe:inputNumber using mouse

We've been using Primefaces (v 3.5) and Primefaces Extensions (v 0.7.0) in our project and it's been great, cheers for the developers and community! The inputNumber component takes care of pretty much all of our needs when dealing with decimal…
09Q71AO534
  • 4,300
  • 13
  • 44
  • 68
2
votes
1 answer

primefaces codeMirror doesn't load his own css and js

I want to use codeMirror from primeface-extension with an sql syntax. I've got a 404 error when the page who contains this component load. The Css and javascript component not found. My code is the same as the example from showcase-ext…
2
votes
3 answers

Bean method not being invoked

Turns out that faces-config.xml was overriding the inline annotation ViewScoped in my Controller class w/ RequestScoped. Fixed it and that seem to solve the problem. This question does not have an answer here commandButton/commandLink/ajax…
Fabii
  • 3,820
  • 14
  • 51
  • 92