Bonjour,

j'utilise richFaces pour ajouter des composants à mes pages jsf mais je trouve beauoup de probleme en utilisant quelques composants,je sais pas est ce que ce sont des bugs du produits ou je dois ajouter qcq chose a mon code.

alors,le probleme que j 'ai maintenant c'est que le datascroller que j'ai ajouté a une datatable ne marche pas,quand j'appuie sur un numéro d'une page uo sur les fleches rien ne change,tout est statiques et fixés a la premiere page.

mon code est le suivant :
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
19
20
21
22
<rich:dataTable id="apList" value="#{listAccountProfileBean.listAccountProfile}" var="accountProfileBean" width="300px" columnClasses="center"
        rows="10">
            <rich:column sortBy="#{accountProfileBean.accountProfileNameAP}"> 
                <f:facet name="header">
                    <h:outputText value="Name"/>
                </f:facet>
                <h:outputText value="#{accountProfileBean.accountProfileNameAP}"/>
            </rich:column> 
             <rich:column sortBy="#{accountProfileBean.accountProfileNameAP}"> 
                <f:facet name="header">
                    <h:outputText value="Current Status"/>
                </f:facet>
                <h:outputText value="#{accountProfileBean.curr_status}"/>
            </rich:column> 
            <rich:column sortBy="#{accountProfileBean.accountProfileNameAP}"> 
                <f:facet name="header">
                    <h:outputText value="Created On"/>
                </f:facet>
                <h:outputText value="#{accountProfileBean.create_date}"/>
            </rich:column> 
 
        </rich:dataTable>
merci pour l'aide.