Fórum

Is primefaces over liferay portlet-bridge mature?

Marcio Dantas, modificado 11 Anos atrás.

Is primefaces over liferay portlet-bridge mature?

New Member Postagens: 2 Data de Entrada: 12/09/12 Postagens Recentes
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, modificado 11 Anos atrás.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Postagens: 2655 Data de Entrada: 27/07/05 Postagens Recentes
- 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, modificado 11 Anos atrás.

RE: Is primefaces over liferay portlet-bridge mature?

New Member Postagens: 2 Data de Entrada: 12/09/12 Postagens Recentes
Thanks, Neil.
thumbnail
Hussain A, modificado 11 Anos atrás.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Postagens: 47 Data de Entrada: 03/04/12 Postagens Recentes
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, modificado 11 Anos atrás.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Postagens: 2655 Data de Entrada: 27/07/05 Postagens Recentes
Does the primefaces3-portlet demo work OK for you?
thumbnail
Hussain A, modificado 11 Anos atrás.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Postagens: 47 Data de Entrada: 03/04/12 Postagens Recentes
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 ".