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

Implementation of Gchart for dynamic data

I have used Gchart to display data in chart form. For now the chart is static. I need to make the chart dynamic as the chart values may change time and again. My Code is like this: dynamicChartObj = new…
Mani Ratna
  • 883
  • 1
  • 11
  • 30
2
votes
1 answer

pe:documentViewer not displaying digital signatures in PDF

I have a multi-format document viewer, in which, for displaying PDFs, I use PF Extension's p:documentViewer component. The backing bean that supplies the StreamedContent of the PDF is phase rendered and is working as expected. However, though the…
Tatha
  • 131
  • 1
  • 13
2
votes
0 answers

How to access pasted rows in PrimeFaces Extensions Sheet?

I want to access the rows of a PrimeFaces Extensions Sheet, after I have pasted data from an excel sheet into it. Ideally, I want to iterate through the rows of the sheet that contain data (as the values in the row should make up one object). I have…
agimus
  • 33
  • 4
2
votes
1 answer

PrimeFaces Extensions CKEditor: cannot access custom config

I need my pe:ckEditor to load custom config, but I have been unsuccessful in this matter for some time, I will welcome any suggestions how to make it work. (I need it functional because I have this problem: PrimeFaces Extensions CKEditor: attempts…
A.Alessio
  • 321
  • 2
  • 15
2
votes
1 answer

Search using javascript on Embedded pe:documentViewer

I have a web app that uses the documentViewer from primefaces extensions to view pdf files. I need to pass a query to the phraseSearch using a javascript, so that the pdf file get opened at the right place where my query is found. I would use this…
codyLine
  • 509
  • 2
  • 8
  • 26
2
votes
0 answers

javax.faces.component.StateHolderSaver possible memory leak

We recently migrate an application from Jboss EAP 6.1 to 7.1. Our application randomly start to go into a full GC death spiral (avg time 12s stop-the-world) and running out of memory in production environment. From Jboss EAP 6.1 to 7.1 we…
Rocco N.
  • 101
  • 1
  • 10
2
votes
1 answer

Adding custom cell renderers in pe:sheet

I am trying to implement a custom cell renderer to the pe:sheet component. As this component is based on Handsontable, I tried the approach as described here: https://handsontable.com/docs/6.2.2/demo-custom-renderers.html I also changed the code for…
GiaglS
  • 63
  • 1
  • 1
  • 5
2
votes
0 answers

Primefaces DataExporter just refreshes page

I have MAIN jsf page where I include header/footer and center page (dynamically):
czda
  • 21
  • 3
2
votes
0 answers

Primefaces documentViewer with Conversation scoped CDI Bean

I have CDI Conversation scoped bean which has field of type StreamedContent (this content should be previewed with Primefaces Extension documentViewer). Conversation is declared long-running before redirection to the page with documentViewer I put…
SMilos
  • 261
  • 2
  • 6
2
votes
2 answers

Message: Missing PDF in PrimeFaces Extensions DocumentViewer

This is my code JAVA:--- public StreamedContent getTempPdfFile() throws IOException { File testPdfFile = Paths.get("D:\\AFC150_20180819_0103.pdf").toFile(); return new DefaultStreamedContent(new FileInputStream(testPdfFile),…
Vasu Sharma
  • 31
  • 1
  • 5
2
votes
2 answers

PrimeFaces input time from timepicker validator must deactivate save button if exception is thrown

this is my xhtml code. I need to validate the input field of arrival time after losing focus and not after using the save button. How can I do that?
2
votes
1 answer

PrimeFaces Extensions pe:sheet component live scroll

Is live scroll possible in pe:sheet component primefaces. For datatable I had performed live scroll and it was working. Any work around for live scroll in pe:sheet?
2
votes
1 answer

Load content in Primefaces Extensions documentViewer

I'm loading StreamedContent into the document viewer like this. xhtml:
sinclair
  • 2,812
  • 4
  • 24
  • 53
2
votes
1 answer

p:fileUpload doesn't work with pe:blockUI in same page

The component does not work correctly when on the same page using the component The error occurs after loading the first file javascript error occurs and then can not continue using the file upload component The blockUI element is like…
Shessuky
  • 1,846
  • 21
  • 24
2
votes
0 answers

primefaces pe:ckEditor not work use custom toolbar in dialog framework

I'm doing HTML editor with PrimeFaces Extensions pe:ckEditor and use custom toolbar, it's in a dialog framework. When the pe:ckEditor is opened, it is not working as expected. Here is my code:
xmcx
  • 283
  • 3
  • 18