Monday, October 27, 2003
Looking for Portlets ?
You are implementing a Portal based on Oracle 9iAS Portal, do not reinvent the wheel !
The Portal Center Knowledge Exchange is a great place to find portlets, articles, tips and technics from the Portlet Developer Community ! You just have to suscribe for free to the Developer Services
Portlet with a vertical scroll bar
To have a better control of the layout of your Portal Pages, you can use a vertical scroll bar in portlet wihout having to use iFrame technology. CSS provide us lof of power to do it.
1. Create a style in your portlet (or in the portlet container code):
<style> .scrollportletId { height:200px; overflow: auto; } </style>2. Use this style in a DIV section:
<div class="scrollportletId> The content of this section will be vertically scrollable. </div>3. The result looks like:
|
Sample Portlet. |