Dura Hurtado wrote:Hi I am trying to build a galleria and it is imposible I have done an important research but nothing found about why with this code my page appears empty and no error is shows in the console.
¿Any knows about it?
Thanks
PrimeFaces galleria is some sort of a data component. Your markup should look like below:
<p:galleria value="#{yourBean.images}" var="image" frameWidth="64" frameHeight="87"
panelWidth="300" panelHeight="200" transitionInterval="0"
styleClass="ui-widget-content ui-corner-all">
<p:graphicImage valu=#{image.image} />
<p:galleriaContent id="q" > <h:outputText value="#{image.content}" /> </p:galleriaContent>
</p:galleria>
Notice the value of p:galleria. It should come from a backing bean. The value of p:graphicImage is derived from the var value of your p:galleria. You can also use Orbit JQuery plugin in place of PrimeFaces galleria. Here is an article about using Orbit plugin in PrimeFaces.
http://kahimyang.info/kauswagan/HowtoBlogs.xhtml?b=750
It is a straight forward guide.