cancel
Showing results for 
Search instead for 
Did you mean: 

Adding scrollbar to a:richList

kayan
Champ in-the-making
Champ in-the-making
Hi,

Can I add vertical scrollbar to a:richList component?  What i wanted is to add a vertical scrollbar to content areas.  This is the piece of code on my browse.jsp where i want to make change.

<%– Content list –%>
<a:richList id="contentRichList" binding="#{BrowseBean.contentRichList}" viewMode="#{BrowseBean.browseViewMode}" pageSize="#{BrowseBean.pageSizeContent}"
styleClass="recordSet" headerStyleClass="recordSetHeader" rowStyleClass="recordSetRow" altRowStyleClass="recordSetRowAlt" width="100%"
value="#{BrowseBean.content}" var="r">


Any suggestion is welcome.

Thank
Kayan
1 REPLY 1

sanket
Champ on-the-rise
Champ on-the-rise
What I did long time ago is…

Added the code that u mentioned
<a:richlist>
…………..
</a:richlist>
inside a <div> just like the following code..

<div id="smthing" style="overflow:auto;height:300px;width:400px">
your a:richlist code….
</div>