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
2 answers

How to display Parent and Child ( two different objects ) in treetable primefaces?

I am using Treetable component to display parent and child objects. I can able to display the parent content by using this tutorial. In my case, I am using two different objects to display the contents in the TreeTable component. Those objects are…
ArunRaj
  • 1,780
  • 2
  • 26
  • 48
2
votes
0 answers

Resizeable image with scaling overlays in JSF

I would like to draw an image with JSF (primefaces) and draw some overlays (rectangles) on the image. The image should be resizable but must keep the image ratio and the overlay should scale also. I tried:
opfau
  • 731
  • 9
  • 37
2
votes
0 answers

Primefaces event not supported by composite component

I have a problem with composite component. I want use pe:javascript (call from normal site) inside composite component. It's possible ?? I try use insertChildren, but I have error: "Event dataSelect is not supported by composite component" Composite…
2
votes
2 answers

Primefaces:dialog minimizable option not working with modal

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 is minimized at the left bottom corner. I tried…
sathish
  • 800
  • 1
  • 8
  • 19
2
votes
1 answer

How to use pe:inputNumber with BigDecimal

Whats the proper/best way to use pe:inputNumber for exact big decimals? I have to accept currency input which can have up to 4 decimals, and must not be rounded. Right now I am doing the following: public void withdraw(Number amount) { BigDecimal d…
rootkit
  • 2,165
  • 2
  • 29
  • 43
2
votes
3 answers

Trouble Using Dynaform of primefaces extensions - jSF

I am getting following error while integrating primefaces-extensions dynaform java.lang.NullPointerException at org.primefaces.extensions.component.dynaform.DynaFormRenderer.preRenderLabel(DynaFormRenderer.java:280) at…
hitesh israni
  • 1,742
  • 4
  • 25
  • 48
2
votes
3 answers

How to get menu overflow in Primefaces Extension with fullpage layout?

The problem is that my menu goes always under the center pane and I have no idea how to fix this. I have tried to change css, but when changing pe-layout-pane-content overflow values, scrollbar is not visible any more and without it z-index in…
Sami
  • 2,311
  • 13
  • 46
  • 80
1
vote
1 answer

Pass parameter from Primefaces sheet to backing bean

I want to pass parameters from primefaces sheet column to jsf backing bean like below.
Samet Dağ
  • 93
  • 6
1
vote
1 answer

Update Specific Row field in Primefaces Sheet

I want to update single row not whole sheet upon any changes. I want something like PrimeFaces.current().ajax().update( sheet.getClientId(FacesContext.getCurrentInstance()) + ":" + updates.get(0).getRowKey()+ ":idoffield" ); But as…
Samet Dağ
  • 93
  • 6
1
vote
1 answer

PrimeFaces ShowcaseUtil class in PF v12 still available?

I can not to find class ShowcasesUtil, that is use to filters, sorting of PrimeFaces LazySorting, LazyFiltering. Example below: public int compare(Customer customer1, Customer customer2) { try { Object value1 =…
1
vote
1 answer

pe:ckEditor is not working since version 12.0.5

I just upgraded PrimeFaces Extensions to version 12.0.5 and noticed that the CKEditor is no longer available. Is it a bug? Has it been renamed or moved? I can't remember seeing anything about it in the migration guides. What can I do to make…
Jasper de Vries
  • 19,370
  • 6
  • 64
  • 102
1
vote
0 answers

Tab Key Not working correctly in Primefaces Sheet Table

Tab key not working on primefaces sheet. If all fields are read only or editable tab key works i mean i can move to next field by pressing tab key. But if it is not same(one is read only and one is editable tab key not working). You can see on below…
Samet Dağ
  • 93
  • 6
1
vote
0 answers

Primefaces Monaco Editor Auto Completion

I Am Using Monaco Editor and i want to add personalised suggestions, is there any way to achieve that
1
vote
1 answer

PrimeFaces Extension Sheet Restrict Decimal Places For Input

I want to restrict decimal places up to 1. User shouldnt type multiple dots(1..99) and (1.99). I want 1.9 2.6 for ex. Not 2.66 then convert into 2.7 etc. I have to use pe:sheetcolumn. I tried to add p:inputnumber and other p: components than pe…
Samet Dağ
  • 93
  • 6
1
vote
0 answers

pe:ckEditor does not fire change event on paste

When I try to paste something to pe:ckEditor, it is not recognizing. My code is recognizing typed text but not pasted text. If I paste some text, the listener is also not getting invoked and report.conclusion value is null. Simply, the pasted text…
PriyaN
  • 23
  • 4