Foren

Is primefaces over liferay portlet-bridge mature?

Marcio Dantas, geändert vor 11 Jahren.

Is primefaces over liferay portlet-bridge mature?

New Member Beiträge: 2 Beitrittsdatum: 12.09.12 Neueste Beiträge
Hi to all,

I would like to know cases from people using Primefaces as JSF 2.0 component library to build portlets over Liferay Faces bridge.

- Does all primefaces components work properly?
- Does Ajax works fine?
- Any performance issue or further recommendation?


Thanks
thumbnail
Neil Griffin, geändert vor 11 Jahren.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Beiträge: 2655 Beitrittsdatum: 27.07.05 Neueste Beiträge
- Does all primefaces components work properly?

Many (if not most) PrimeFaces components work, but there are some that do not. For example, there is an issue with p:dataExporter and portlets.

- Does Ajax works fine?

I am not aware of any issues related to PrimeFaces Ajax and Liferay Portal, so I think it is safe to say that Ajax works fine.

- Any performance issue or further recommendation?

I am not aware of any issues related to PrimeFaces performance within Liferay Portal.
Marcio Dantas, geändert vor 11 Jahren.

RE: Is primefaces over liferay portlet-bridge mature?

New Member Beiträge: 2 Beitrittsdatum: 12.09.12 Neueste Beiträge
Thanks, Neil.
thumbnail
Hussain A, geändert vor 11 Jahren.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Beiträge: 47 Beitrittsdatum: 03.04.12 Neueste Beiträge
Hi Neil,
I have a very serious issue, I am using Liferay 6.1.1 CE, I am developing a Primefaces based demo portlet.
The issue is regarding Ajax, the ajax is called, serverside code is executed but from end is not getting rendered.
the primeFaces version in 3.3.
thumbnail
Neil Griffin, geändert vor 11 Jahren.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Beiträge: 2655 Beitrittsdatum: 27.07.05 Neueste Beiträge
Does the primefaces3-portlet demo work OK for you?
thumbnail
Hussain A, geändert vor 11 Jahren.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Beiträge: 47 Beitrittsdatum: 03.04.12 Neueste Beiträge
Thanks for response Neil,
I was making a mistake, instead of using <p:panel visible="#{someController.vissible}" />
I was trying to show and hide some text with <p:outputText value="someText" rendered="#{someController.vissible"/> , and it was not working.

Below code worked for me.

<p:panel visible="#{someController.vissible}" >
<p:outputText value="someText" />
</p:panel>


In short the property " visible " should be used to hide/show purposes instead of the property " rendered ".