Page 1 of 1

[SOLVED] primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 31 Oct 2018, 02:11
by Quix0r
Hello all,

thank you for your work on Primefaces. I have just tested to replace

Code: Select all

bootstrap
with

Code: Select all

atlantis-steel
(1.0.2 on PF 6.2) in initial-context parameter

Code: Select all

primefaces.THEME
in my

Code: Select all

web.xml
and suddenly all icons are no longer rendered.

You can publicly view a screenshot of my application with the said issue here (screenshot-20181031_010346.png).

Do I have to switch to fontawsome? Thank you in advance for helping out.

Best regards,
Roland

Re: primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 31 Oct 2018, 08:08
by mert.sincan
Could you please try the following param?

in web.xml

Code: Select all

<context-param>
        <param-name>primefaces.FONT_AWESOME</param-name>
        <param-value>true</param-value>
    </context-param>

Re: primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 31 Oct 2018, 22:05
by Quix0r
Hi @aragorn,

ah, my guess already. :-) This initial parameter was absent because I only used jquery-ui icons.

Thank you anyway for your reply.

PS: Solved. Maybe I was to sleepy yesterday night? :mrgreen: :roll:

Re: [SOLVED] primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 31 Oct 2018, 22:18
by Quix0r
OT: I got the issue fixed but some tables have so much columns that the sorter is hidden ... Maybe I need more rewrites, e.g. column priorities and such.

Re: [SOLVED] primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 01 Nov 2018, 07:55
by mert.sincan
Thanks a lot for the update! ;) Maybe, you can use scrollable table or reflow=true for your issue.

Re: [SOLVED] primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 02 Nov 2018, 13:46
by Quix0r
Hi. reflow=true is already set. What does scrollable table mean? Horizontal scroll bars? That is not responsive.

Re: [SOLVED] primefaces.THEME set to atlantis-steel (previous: bootstrap) - all jquery-ui icons gone?

Posted: 05 Nov 2018, 09:59
by mert.sincan
Horizontal scroll bars? That is not responsive.
- Yes, you're right. Maybe, you can use the only horizontal scroll with scrollWidth:100% and the fixed column width (without relow="true").