Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

scrolling table 2

Status
Not open for further replies.

PepperPepsi

Programmer
Aug 3, 2000
241
US
Hi guys,

this is the page i'm working on

when you mouseover the down arrow image, the table move up, but it got overlap on the top. The netscape 4.x works fine, only IE have this problem.

here is part of the code for IE
-----------------------------------------------------------
pos = parseInt(document.all.datatable.style.top) - pixIncr;
document.all.datatable.style.top = pos;
scrolling = setTimeout("scroll_dn()", scrollSpeed);
-----------------------------------------------------------

any help will be appreciate~ thanks~~
Chiu Chan
WebMaster & Software Engineer
emagine solutions, inc
cchan@emagine-solutions.com
 
Try putting the whole thing inside of a div tag with overflow=hidden <div style=&quot;position:absolute; overflow:hidden.....

if that does'nt work for what you need, investigate clipping paths.

Liz
 
hie PepperPepsi,rubychyld is rite...
& it looks like clear 2 me: for nn u clip the layer & for ie u arent...
try to set overflow, like he said, but i noticed that overflow:hidden doesnt work in ie4.0, dont kno about others, in ie5.0 it shure works (i use it myself) or clip those layer with the main table in ie (syntax:clip: rect(top right bottom left))
 
Can you help me how to change the color of a button and input text field border line.
parvez
buruj@hotmail.com
 
Hi guys,

thanks for the replys,
the overflow attribute works great,
i found out that you can use overflow:auto or overflow:scroll to display the scrollbar next to it.

take a look, hope this is the final version =P

thanks again~ Chiu Chan
WebMaster & Software Engineer
emagine solutions, inc
cchan@emagine-solutions.com
 
what about ie4.0? is overflow works there?
as i wrote, i have problems with it there...
is it my problem or is it ie4.0's one?
 
With my mozilla 0.9 browser I do not see any scrolling tables in this link

Wow, but I just checked it in NS 4.7 and it works awesome.

I'll look at it later in IE, when I have access to windoze.

I'll send a message to the mozilla people later, I have just installed a recent build and I have noticed some little quirks.
 
newimprovedmedia-
Mozilla reports itself as Netscape, and it does not support the layer tag... So if the browser-detection doesn't account for this it will not (and should not) work.
 
Kewl page...

I was just wondering, is there a way to add scroll bars with CSS? Specifically to a table like this?
 
>>newimprovedmedia is there a way to add scroll bars
dont kno about css, but as Pepsi told, use overflow:scroll || auto for layers (span, div), ie only.. (not shure, but may be nn6 ??)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top