Page 1 of 1

primefaces version

Posted: 25 May 2017, 22:23
by odmera77
Which is the version of primefaces that I must use to get a good performance of Paradise, I am currently version 5.1

Re: primefaces version

Posted: 26 May 2017, 13:22
by mert.sincan
Please see; https://www.primefaces.org/layouts/paradise
Officially supported for 5.x, 6.0 and newer.
You can use 6.1 version(lastest community version)

Re: primefaces version

Posted: 26 May 2017, 23:18
by odmera77
Thanks, I am using version 5.1 de primefaes but the icons are not loaded and the responsive design does not work, should I do something else to make the theme work well?
aragorn wrote:
26 May 2017, 13:22
Please see; https://www.primefaces.org/layouts/paradise
Officially supported for 5.x, 6.0 and newer.
You can use 6.1 version(lastest community version)

Re: primefaces version

Posted: 29 May 2017, 15:30
by mert.sincan
the responsive design does not work
- For this issue, you need to add grid.css into your template.xhtml If you use PrimeFaces 5.1. Please check this file; /src/main/webapp/resources/paradise-layout/css/grid.css

Code: Select all

 ....
        <h:outputStylesheet name="css/nanoscroller.css" library="paradise-layout" />
        <h:outputStylesheet name="css/animate.css" library="paradise-layout" />
        <h:outputStylesheet name="css/layout-#{guestPreferences.layout}.css" library="paradise-layout" />
        <h:outputStylesheet name="css/grid.css" library="paradise-layout" /> <!-- Please add this line -->
  </h:body>
 ...
the icons are not loaded
- Paradise use FontAwesome icons. (http://fontawesome.io/) You can add these icons into your project if you use PrimeFaces 5.1

Re: primefaces version

Posted: 05 Jun 2017, 17:17
by odmera77
Perfect, thank you very much, with this to solve my problem

Re: primefaces version

Posted: 05 Jun 2017, 17:33
by mert.sincan
Glad to hear, thanks for the update!