Re[2]: OT: scrolling tables

2002-05-31 Thread Critz

oi Jon!!


cheers mate.

-- 
Best regards,

Critter, MMCP
Certified ColdFusion Developer
 
Crit[s2k] - CF_ChannelOp Network=EFNet Channel=ColdFusion


Thursday, May 30, 2002, 11:45:06 PM, you wrote:

JH Couple different ways, most use the css overflow property, which
JH doesn't work in NS4. If NS4 is necessary, I'd reccomend searching for
JH the Beehive DHTML library. I can't remember the site, but it lets you
JH do an inline scroll in NS4.
JH Otherwise here is some example code...it's very rough, but it
JH illustrates the idea.

JH style type=text/css
JH td {
JH width: 100px;
JH }
JH /style

JH div id=oLayer style=width: 250px; height: 100px;
JH div id=nav style=width: 100%; position: absolute;
JH table cellpadding=0 cellspacing=0
JH tr
JH tdColumn1/td
JH tdColumn2/td
JH tdColumn3/td
JH tdColumn4/td
JH /tr
JH /table
JH /div
JH div id=data style=width: 100%; height: 50px; overflow: auto; position: 
absolute; top: 30px;
JH table cellpadding=0 cellspacing=0
JH tr
JH tddata/td
JH tddata/td
JH tddata/td
JH tddata/td
JH /tr
JH tr
JH tddata/td
JH tddata/td
JH tddata/td
JH tddata/td
JH /tr
JH tr
JH tddata/td
JH tddata/td
JH tddata/td
JH tddata/td
JH /tr
JH /table
JH /div
JH /div


JH Thursday, May 30, 2002, 10:53:07 PM, you wrote:
C oi CF-Talk,!!
C   somewherepossibly  on  the  msdn  site  I've  seen  an example where table
C   headers are stationary, but the cells are scrollable.
C   anybody else seen this.or know where some Xamples are?
C   thanks

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Joshua Tipton

Set a z-index in the style property on the table, tr, or td and then that
part will scroll.

Joshua Tipton

-Original Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 30, 2002 10:59 PM
To: CF-Talk
Subject: RE: scrolling tables


I've seen this done with iframe but I'm not sure if its the best solution.


**

Kevin Parker
Web Services Manager
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

p: 08 82332548
f: 08 82332000
m: 0418 806 166

**


-Original Message-
From: Critz [mailto:[EMAIL PROTECTED]]
Sent: Friday, 31 May 2002 12:23 PM
To: CF-Talk
Subject: OT: scrolling tables


oi CF-Talk,!!

  somewherepossibly  on  the  msdn  site  I've  seen  an example where
table
  headers are stationary, but the cells are scrollable.

  anybody else seen this.or know where some Xamples are?


  thanks

--
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: scrolling tables

2002-05-31 Thread Simon Whittaker

like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion



 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Shawn Grover

Or a DIV with scrolling set to Yes.  But this will likely only work in IE
5.5+

Shawn Grover

-Original Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 30, 2002 8:59 PM
To: CF-Talk
Subject: RE: scrolling tables


I've seen this done with iframe but I'm not sure if its the best solution.


**

Kevin Parker
Web Services Manager
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

p: 08 82332548
f: 08 82332000
m: 0418 806 166

**


-Original Message-
From: Critz [mailto:[EMAIL PROTECTED]]
Sent: Friday, 31 May 2002 12:23 PM
To: CF-Talk
Subject: OT: scrolling tables


oi CF-Talk,!!

  somewherepossibly  on  the  msdn  site  I've  seen  an example where
table
  headers are stationary, but the cells are scrollable.

  anybody else seen this.or know where some Xamples are?


  thanks

--
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Joshua Tipton

Sorry man I told you the wrong thing.  It is this

style=OVERFLOW-Y: auto;

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion





__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: scrolling tables

2002-05-31 Thread Critz

oi Critz!!

ok..using  the  example  with  the  overflow...any  idea  how to line up the
table?? the scrollbar throws off the alignment


-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Thursday, May 30, 2002, 10:53:07 PM, you wrote:

C oi CF-Talk,!!

C   somewherepossibly  on  the  msdn  site  I've  seen  an example where table
C   headers are stationary, but the cells are scrollable.

C   anybody else seen this.or know where some Xamples are?


C   thanks

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Shawn Grover

I just tried out the z-index suggestion.  Put it in the table, tr, and
td tag (one at a time) - no scolling occured.

but, I have to wonder what a z-index would have to do with scrolling.
Scrolling is a horizontal movement, whereas z-index is a depth value...  so
I'm a bit confused if there IS a relationship here.

Shawn Grover

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 7:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion





__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: scrolling tables

2002-05-31 Thread Joshua Tipton

This should work.

Joshua Tipton


Table
tr
tdHeaders for table/td
/tr
tr
td style=OVERFLOW-Y: auto;
table
tr
tdYourStuff/td
/tr
 /table
/td
/tr
/table
-Original Message-
From: Critz [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 11:04 AM
To: CF-Talk
Subject: Re: OT: scrolling tables


oi Critz!!

ok..using  the  example  with  the  overflow...any  idea  how to line up
the
table?? the scrollbar throws off the alignment


--
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Thursday, May 30, 2002, 10:53:07 PM, you wrote:

C oi CF-Talk,!!

C   somewherepossibly  on  the  msdn  site  I've  seen  an example
where table
C   headers are stationary, but the cells are scrollable.

C   anybody else seen this.or know where some Xamples are?


C   thanks


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Joshua Tipton

Yeah I am working on 3 projects at once and meant like this but I was
working on a z index problem.


Table
tr
tdHeaders for table
/tr
tr
td style=OVERFLOW-Y: auto;
table
tr
tdYourStuff/td
/tr
 /table
/td
/tr
/table

Joshua Tipton


-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 11:15 AM
To: CF-Talk
Subject: RE: scrolling tables


I just tried out the z-index suggestion.  Put it in the table, tr, and
td tag (one at a time) - no scolling occured.

but, I have to wonder what a z-index would have to do with scrolling.
Scrolling is a horizontal movement, whereas z-index is a depth value...  so
I'm a bit confused if there IS a relationship here.

Shawn Grover

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 7:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion






__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Shawn Grover

Sorry Joshua, my previous posts were before I saw this message.  but the
overflow-y option isn't working either.  Is there some condition that needs
to be met before scolling will be kicked in (maybe the height/width of the
cell in question)?


-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:03 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry man I told you the wrong thing.  It is this

style=OVERFLOW-Y: auto;

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion






__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Joshua Tipton

Sorry man you need to put a div in like below.  I had to go back and look at
some previous code.

Joshua Tipton

Table
tr
tdHeaders for table/td
/tr
tr
td
  DIV style=OVERFLOW-Y: auto; WIDTH: 100%; HEIGHT: 100%
  table
tr
tdYourStuff/td
/tr
 /table
/div
/td
/tr
/table





-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 11:18 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry Joshua, my previous posts were before I saw this message.  but the
overflow-y option isn't working either.  Is there some condition that needs
to be met before scolling will be kicked in (maybe the height/width of the
cell in question)?


-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:03 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry man I told you the wrong thing.  It is this

style=OVERFLOW-Y: auto;

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion







__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: scrolling tables

2002-05-31 Thread Jason Miller

I used the div tags since they were friendlier than iframe and others.
IN fact -this does work in all IE  - here a snap shot of my code -

div class=leftsection style=position:absolute; width:225px; height:222px; 
z-index:1; overflow: auto; scrollbar-base-color: #334051;
scrollbar-arrow-color: #FF; scrollbar-DarkShadow-Color: #00;

if you like - you can see tons of css in action - specifically the scroll bars by 
goign to a url I am currently designing on
http://www.hermanshaseverything.com/priority/priority.cfm -
it is a test area - it may ask for a user name and password - use Jim Brady and test .
In the clothing area you will see the scroll bars. They are set to auto becuase all 
the data is pulled in by coldfusion and it changes frequently.
Viewing it in Netscape 6+ you will see that the scrolls work - just adjustments would 
have to be made in regards to the other layers I use

hope this helps
jay miller

Simon Whittaker wrote:

 like this
 style=z-index : auto;
 or have I got completely the wrong idea?

 Simon

 - Original Message -
 From: Joshua Tipton [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Friday, May 31, 2002 1:05 PM
 Subject: RE: scrolling tables

  Set a z-index in the style property on the table, tr, or td and then that
  part will scroll.
 
  Joshua Tipton
 
  -Original Message-
  From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, May 30, 2002 10:59 PM
  To: CF-Talk
  Subject: RE: scrolling tables
 
 
  I've seen this done with iframe but I'm not sure if its the best
 solution.
 
 
  **
 
  Kevin Parker
  Web Services Manager
  WorkCover Corporation
 
  [EMAIL PROTECTED]
  www.workcover.com
 
  p: 08 82332548
  f: 08 82332000
  m: 0418 806 166
 
  **
 
 
  -Original Message-
  From: Critz [mailto:[EMAIL PROTECTED]]
  Sent: Friday, 31 May 2002 12:23 PM
  To: CF-Talk
  Subject: OT: scrolling tables
 
 
  oi CF-Talk,!!
 
somewherepossibly  on  the  msdn  site  I've  seen  an example where
  table
headers are stationary, but the cells are scrollable.
 
anybody else seen this.or know where some Xamples are?
 
 
thanks
 
  --
  Critz
  Certified Adv. ColdFusion Developer
 
  Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion
 
 
 
 
 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: scrolling tables

2002-05-31 Thread Joe Bastian

How does this really work? is there an example online?

Joe

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 11:16 AM
Subject: RE: OT: scrolling tables


 This should work.

 Joshua Tipton


 Table
 tr
 tdHeaders for table/td
 /tr
 tr
 td style=OVERFLOW-Y: auto;
 table
 tr
 tdYourStuff/td
 /tr
  /table
 /td
 /tr
 /table
 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 31, 2002 11:04 AM
 To: CF-Talk
 Subject: Re: OT: scrolling tables


 oi Critz!!

 ok..using  the  example  with  the  overflow...any  idea  how to line
up
 the
 table?? the scrollbar throws off the alignment


 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion
 
 Thursday, May 30, 2002, 10:53:07 PM, you wrote:

 C oi CF-Talk,!!

 C   somewherepossibly  on  the  msdn  site  I've  seen  an example
 where table
 C   headers are stationary, but the cells are scrollable.

 C   anybody else seen this.or know where some Xamples are?


 C   thanks


 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-31 Thread Shawn Grover

Ok, that makes more sense.  Your example still didn't work (cut and paste it
verbatim, no luck, added a large block of text, no luck).  Not until I took
off the outer table, header row, and cell.  End result was something like
this:

  DIV style=OVERFLOW-Y: auto; WIDTH: 100%; HEIGHT: 100%
  table
tr
tdYourStuff/td
/tr
 /table
/div

That had the desired effect.  Good to know though.

Shawn Grover

-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:28 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry man you need to put a div in like below.  I had to go back and look at
some previous code.

Joshua Tipton

Table
tr
tdHeaders for table/td
/tr
tr
td
  DIV style=OVERFLOW-Y: auto; WIDTH: 100%; HEIGHT: 100%
  table
tr
tdYourStuff/td
/tr
 /table
/div
/td
/tr
/table





-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 11:18 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry Joshua, my previous posts were before I saw this message.  but the
overflow-y option isn't working either.  Is there some condition that needs
to be met before scolling will be kicked in (maybe the height/width of the
cell in question)?


-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:03 AM
To: CF-Talk
Subject: RE: scrolling tables


Sorry man I told you the wrong thing.  It is this

style=OVERFLOW-Y: auto;

-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 9:47 AM
To: CF-Talk
Subject: Re: scrolling tables


like this
style=z-index : auto;
or have I got completely the wrong idea?

Simon

- Original Message -
From: Joshua Tipton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 1:05 PM
Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion








__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: scrolling tables

2002-05-31 Thread Critz

oi Shawn!!

perhaps, I'm just not getting it.

I couldn't get the other one to work either. but my problem is

aligning the headings with the rest of the td cells.


and doesn't a table within the table cells kill the alignment?


-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Friday, May 31, 2002, 11:35:57 AM, you wrote:

SG Ok, that makes more sense.  Your example still didn't work (cut and paste it
SG verbatim, no luck, added a large block of text, no luck).  Not until I took
SG off the outer table, header row, and cell.  End result was something like
SG this:

SG   DIV style=OVERFLOW-Y: auto; WIDTH: 100%; HEIGHT: 100%
SG   table
SG tr
SG tdYourStuff/td
SG /tr
SG  /table
SG /div

SG That had the desired effect.  Good to know though.

SG Shawn Grover

SG -Original Message-
SG From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
SG Sent: Friday, May 31, 2002 9:28 AM
SG To: CF-Talk
SG Subject: RE: scrolling tables


SG Sorry man you need to put a div in like below.  I had to go back and look at
SG some previous code.

SG Joshua Tipton

SG Table
SG tr
SG tdHeaders for table/td
SG /tr
SG tr
SG td
SG   DIV style=OVERFLOW-Y: auto; WIDTH: 100%; HEIGHT: 100%
SG   table
SG tr
SG tdYourStuff/td
SG /tr
SG  /table
SG /div
SG /td
SG /tr
SG /table





SG -Original Message-
SG From: Shawn Grover [mailto:[EMAIL PROTECTED]]
SG Sent: Friday, May 31, 2002 11:18 AM
SG To: CF-Talk
SG Subject: RE: scrolling tables


SG Sorry Joshua, my previous posts were before I saw this message.  but the
SG overflow-y option isn't working either.  Is there some condition that needs
SG to be met before scolling will be kicked in (maybe the height/width of the
SG cell in question)?


SG -Original Message-
SG From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
SG Sent: Friday, May 31, 2002 9:03 AM
SG To: CF-Talk
SG Subject: RE: scrolling tables


SG Sorry man I told you the wrong thing.  It is this

SG style=OVERFLOW-Y: auto;

SG -Original Message-
SG From: Simon Whittaker [mailto:[EMAIL PROTECTED]]
SG Sent: Friday, May 31, 2002 9:47 AM
SG To: CF-Talk
SG Subject: Re: scrolling tables


SG like this
SG style=z-index : auto;
SG or have I got completely the wrong idea?

SG Simon

SG - Original Message -
SG From: Joshua Tipton [EMAIL PROTECTED]
SG To: CF-Talk [EMAIL PROTECTED]
SG Sent: Friday, May 31, 2002 1:05 PM
SG Subject: RE: scrolling tables


 Set a z-index in the style property on the table, tr, or td and then that
 part will scroll.

 Joshua Tipton

 -Original Message-
 From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 30, 2002 10:59 PM
 To: CF-Talk
 Subject: RE: scrolling tables


 I've seen this done with iframe but I'm not sure if its the best
SG solution.


 **

 Kevin Parker
 Web Services Manager
 WorkCover Corporation

 [EMAIL PROTECTED]
 www.workcover.com

 p: 08 82332548
 f: 08 82332000
 m: 0418 806 166

 **


 -Original Message-
 From: Critz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, 31 May 2002 12:23 PM
 To: CF-Talk
 Subject: OT: scrolling tables


 oi CF-Talk,!!

   somewherepossibly  on  the  msdn  site  I've  seen  an example where
 table
   headers are stationary, but the cells are scrollable.

   anybody else seen this.or know where some Xamples are?


   thanks

 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion








SG 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: scrolling tables

2002-05-31 Thread Jason Miller

Man that is great -
Also - this company has some powerful scrollling css - not sure if specific to tables  
but worth a look -
http://www.projectseven.com/


Tyler Silcox wrote:

 Man, I've been looking for something like this for awhile and have been
 playing around with it for the last half-hour or so, and now have the widths
 lining up correctly.  I freakin dig this...you can check it out here:

 http://test.gslsolutions.com/tablers.cfm

 Tyler Silcox
 email | [EMAIL PROTECTED]

 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: scrolling tables

2002-05-31 Thread Critz

oi Tyler!!

cheers mate. thanks for the xample


-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Friday, May 31, 2002, 12:04:14 PM, you wrote:

TS Man, I've been looking for something like this for awhile and have been
TS playing around with it for the last half-hour or so, and now have the widths
TS lining up correctly.  I freakin dig this...you can check it out here:

TS http://test.gslsolutions.com/tablers.cfm

TS Tyler Silcox
TS email | [EMAIL PROTECTED]


TS 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: scrolling tables

2002-05-30 Thread Critz

oi CF-Talk,!!

  somewherepossibly  on  the  msdn  site  I've  seen  an example where table
  headers are stationary, but the cells are scrollable.

  anybody else seen this.or know where some Xamples are?


  thanks

-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: scrolling tables

2002-05-30 Thread Parker, Kevin

I've seen this done with iframe but I'm not sure if its the best solution.


**

Kevin Parker
Web Services Manager
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

p: 08 82332548
f: 08 82332000
m: 0418 806 166

**


-Original Message-
From: Critz [mailto:[EMAIL PROTECTED]]
Sent: Friday, 31 May 2002 12:23 PM
To: CF-Talk
Subject: OT: scrolling tables


oi CF-Talk,!!

  somewherepossibly  on  the  msdn  site  I've  seen  an example where
table
  headers are stationary, but the cells are scrollable.

  anybody else seen this.or know where some Xamples are?


  thanks

-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: scrolling tables

2002-05-30 Thread Jon Hall

Couple different ways, most use the css overflow property, which
doesn't work in NS4. If NS4 is necessary, I'd reccomend searching for
the Beehive DHTML library. I can't remember the site, but it lets you
do an inline scroll in NS4.
Otherwise here is some example code...it's very rough, but it
illustrates the idea.

style type=text/css
td {
width: 100px;
}
/style

div id=oLayer style=width: 250px; height: 100px;
div id=nav style=width: 100%; position: absolute;
table cellpadding=0 cellspacing=0
tr
tdColumn1/td
tdColumn2/td
tdColumn3/td
tdColumn4/td
/tr
/table
/div
div id=data style=width: 100%; height: 50px; overflow: auto; position: 
absolute; top: 30px;
table cellpadding=0 cellspacing=0
tr
tddata/td
tddata/td
tddata/td
tddata/td
/tr
tr
tddata/td
tddata/td
tddata/td
tddata/td
/tr
tr
tddata/td
tddata/td
tddata/td
tddata/td
/tr
/table
/div
/div


Thursday, May 30, 2002, 10:53:07 PM, you wrote:
C oi CF-Talk,!!
C   somewherepossibly  on  the  msdn  site  I've  seen  an example where table
C   headers are stationary, but the cells are scrollable.
C   anybody else seen this.or know where some Xamples are?
C   thanks

-- 
jon

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists