Hello,

J ai un petit soucie lorsque j utilise l attribut width de mes columnClasses

j ai définit mon css de la manière suivante (avec une couleur d arriere plan pour voir si le css était bien pris en compte)

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 .firstColumnProductDetail {
    width:150px;
    background-color: yellow;
}
.secondColumnProductDetail {
    width:180px;
    background-color: blue;
}
.thirdColumnProductDetatil {
    width:40px;
    background-color: black;    
}
et ensuite appliquer les style au columnClasses :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
 <h:panelGrid rendered="true" id="pnlProductType" columns="3" columnClasses="firstColumnProductDetail,secondColumnProductDetail,thirdColumnProductDetatil">
malheureusement les width ne sont pas prises en compte quelqu un aurait une "astuce"

merci