Foros de discusión

Is primefaces over liferay portlet-bridge mature?

Marcio Dantas, modificado hace 11 años.

Is primefaces over liferay portlet-bridge mature?

New Member Mensajes: 2 Fecha de incorporación: 12/09/12 Mensajes recientes
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 hace 11 años.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Mensajes: 2655 Fecha de incorporación: 27/07/05 Mensajes recientes
- 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 hace 11 años.

RE: Is primefaces over liferay portlet-bridge mature?

New Member Mensajes: 2 Fecha de incorporación: 12/09/12 Mensajes recientes
Thanks, Neil.
thumbnail
Hussain A, modificado hace 11 años.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Mensajes: 47 Fecha de incorporación: 3/04/12 Mensajes recientes
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 hace 11 años.

RE: Is primefaces over liferay portlet-bridge mature?

Liferay Legend Mensajes: 2655 Fecha de incorporación: 27/07/05 Mensajes recientes
Does the primefaces3-portlet demo work OK for you?
thumbnail
Hussain A, modificado hace 11 años.

RE: Is primefaces over liferay portlet-bridge mature?

Junior Member Mensajes: 47 Fecha de incorporación: 3/04/12 Mensajes recientes
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 ".