Home
TeamSite
Scrolling Frame
gits
Hi,
I have a JSP being called from another JSP. The first JSP is called from a custom UI item.
When my 2nd JSP returns results and the results are more than what the right frame can take, it cuts eveything after a certain points as there is no scrollbar visible. Looking at the code in firebug, I see that the frame has scrolling set to no.
<frame scrolling="no" src="/iw-cc/command/iw.group.ccpro.list_directory?vpath=/default/main/xxxx/WORKAREA/shared/templatedata/Content/xxxx/data" id="fs_list" name="fs_list">
I tried adding these separately to my 2nd JSP, but that didnt help either.
parent.window.frames["fs_list"].scrolling = true
parent.window.frames["fs_list"].scrolling = "yes"
How can I set the scrolling on the right frame?
Thanks for your help
TeamSite 7.3.2
Find more posts tagged with
Comments
Rick Poulin
I take it you can't modify the parent JSP?
You may have CSS on the iframe that sets overflow:hidden. Hard to say without being able to inspect the actual page. Try using firebug (or if you have to, the IE dev console) to dynamically change attributes until you figure out the one that does it.
gits
Issue resolved.
I wrapped my main Table into a DIV with style set as height:100%; overflow:scroll and that worked.