- Scrollbars within navigation tabs
- Posted by Shannon Willison on November 3rd, 2003
I have created a new tab on the account form's left nav
bar that calls out to a custom web form. My problem is
that scrollbars do not appear in these custom tabs -
unlike the built in tabs. I have tried to
pass "scrollbars=1" in the WinParams parameter in
isv.config but this didn't work either. Does anyone know
how I can get scrollbars to appear in my custom tabs?
Thanks in advance for your help.
Shannon Willison
- Posted by Al on November 4th, 2003
Shannon,
If you modify your HTML page to use scrollbars, they will appear, but you
must explicitly add the tags.
--
remove underscores to email
"Shannon Willison" <anonymous@discussions.microsoft.com> wrote in message
news:05a901c3a242$890037e0$a101280a@phx.gbl...
- Posted by Nathan R. Pieper on November 4th, 2003
I use a DIV tag set as follows on my pages.
<DIV class="tab" style="DISPLAY: inline; OVERFLOW: scroll">
Inside the DIV I hold my table height="100%" to display my own data.
"Shannon Willison" <anonymous@discussions.microsoft.com> wrote in message
news:012e01c3a2f6$61565c10$a301280a@phx.gbl...
- Posted by Shannon Willison on November 4th, 2003
Terrific, thanks!