hello all, Please tell me how can I create a Richfaces page where I want to keep the collapsible panels fixed and below that I have another form. As the form is very large. So I want to put a scroller. Do I need to use frameset or is there any support for that in Richfaces
+1
A:
Nothing jsf-specific. That is usually done via CSS:
- create a
<div class="limitedHeightDiv">
define the css class in a css file:
.limitedHeightDiv { height: 100px; overflow: scroll; }
(You can define these styles inline, using style=".."
as well)
Bozho
2010-10-12 12:55:31
thats a lot !!! it worked!!!
Suman_Sohal
2010-10-12 14:15:19