When I set an application specific theme in the AdminUI (Axon.ivy 6.0.1 or later) it has no effect. The theme still is the default one. What is wrong?

asked 23.12.2015 at 12:19

Reto%20Weiss's gravatar image

Reto Weiss ♦♦
4.9k202857
accept rate: 74%


You may have set the default theme in the web.xml as follows:

<context-param>
  <param-name>primefaces.THEME</param-name>
  <param-value>le-frog</param-value>
</context-param>

To get application specific themes to work set the default theme in the web.xml as follows:

<context-param>
  <param-name>primefaces.THEME</param-name>
  <param-value>#{ivyPrimefacesThemeResolver.getTheme('le-frog')}</param-value>
</context-param>

Also see the migration notes of Axon.ivy 6.0.1 for more information.

link

answered 23.12.2015 at 12:19

Reto%20Weiss's gravatar image

Reto Weiss ♦♦
4.9k202857
accept rate: 74%

edited 23.12.2015 at 12:20

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×16

Asked: 23.12.2015 at 12:19

Seen: 1,962 times

Last updated: 23.12.2015 at 12:20