2 pièce(s) jointe(s)
probleme affichage element richfaces avec skin par defaut
Bonjour à tous !
Voila j'ai un probleme avec l'afffichagfe des skin par defaut sur richfaces.
Par exemple lorsque je cherche à afficher un rich:calendar, il me l'affiche ainsi :
(voir myrichcalendar.jpg) alors que par defaut le rich:calendar s'affiche ainsi (si j'en crois les exemples : normalrichcalendar.jpg)
ci joint la partie de gestion des skin de mon web.xml
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| <context-param>
<param-name>org.richfaces.enableControlSkinning</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.richfaces.enableControlSkinningClasses</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
<param-name>org.richfaces.skin</param-name>
<param-value>blueSky</param-value>
</context-param> |
et la partie d'import des bibliotheques pom.xml
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| <dependencyManagement>
<dependencies>
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<version>${org.richfaces.bom.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
<version>${org.richfaces.bom.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
...
</dependencies>
<dependencies>
...
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
</dependency>
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
<scope>provided</scope>
</dependency>
...
</dependencies>
</dependencyManagement> |
Merci d'avance!!!