Bonjour,
J'ai un problème, j'ai instancié un dataScrollableTable et le problème c'est que mes colonnes sont décalé vers la droite par rapport aux header du tableau. Je ne comprend vraiment pas le bug.
Voici le code:
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 <rich:scrollableDataTable rowKeyVar="rkv" height="400px" width="300px" id="packList" columnClasses="col" value="#{packService.packList}" var="entry" sortMode="single" selection="#{packService.selection}" binding="#{packService.table}"> <rich:column> <f:facet name="header"> <h:outputText styleClass="headerText" value="Time" /> </f:facet> <h:outputText value="#{entry.key}" /> </rich:column> <rich:column> <f:facet name="header"> <h:outputText styleClass="headerText" value="Price" /> </f:facet> <h:outputText value="#{entry.value}" /> </rich:column> </rich:scrollableDataTable>
Partager