jsf 2 - Disable import of Richfaces 4 CSS -
jsf 2 - Disable import of Richfaces 4 CSS -
i tried disable skinning of components using richfaces 4 in jsf 2 application. there's web.xml:
<context-param> <param-name>org.richfaces.loadstylestrategy</param-name> <param-value>none</param-value> </context-param> <context-param> <param-name>org.richfaces.skin</param-name> <param-value>plain</param-value> </context-param> <context-param> <param-name>org.richfaces.enablecontrolskinning</param-name> <param-value>false</param-value> </context-param>
this makes application not skinned richfaces 4 default skin. when add together richfaces component, still gets classes set. possible disable css, without overriding of richfaces css classes ?
ok first of org.richfaces.skin rf 3 has been replaced org.richfaces.skin of rf 4 (notice lowercase).
secondly org.richfaces.loadstylestrategy not supported in rf 4. seek going through richfaces migration guide
jsf-2 richfaces
Comments
Post a Comment