PC Review Forums Newsgroups Microsoft Word Microsoft Frontpage Scrolling data/table in a cell

Reply

Scrolling data/table in a cell

 
Thread Tools Rate Thread
Old 30-03-2006, 10:42 PM   #1
=?Utf-8?B?RG91ZyBNYWM=?=
Guest
 
Posts: n/a
Default Scrolling data/table in a cell


Has anyone got any recomendations to acheive the following

I would like to have an upcomming events area in a cell eg

Date, Event, Location etc (There would be many of these)
The idea is to have the data in a table and then have the ability to scroll
the data/table in a cell.

TIA
Regards Doug


  Reply With Quote
Old 30-03-2006, 10:47 PM   #2
Murray
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Use a scrolling div.

CAUTION - the contents of such things do NOT print, unless you explicitly
style them to do so in a print stylesheet. In addition, they are not really
the most user friendly way to present your content.

But - if you must, then consider this -

<td><div style="height 200px; overflow:auto;">tons of content
here</div></td>

--
Murray
--------------
MVP FrontPage


"Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
> Has anyone got any recomendations to acheive the following
>
> I would like to have an upcomming events area in a cell eg
>
> Date, Event, Location etc (There would be many of these)
> The idea is to have the data in a table and then have the ability to
> scroll
> the data/table in a cell.
>
> TIA
> Regards Doug
>
>



  Reply With Quote
Old 30-03-2006, 11:19 PM   #3
=?Utf-8?B?RG91ZyBNYWM=?=
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Thank Murray,
tryed that bit of code however I'm not up with all this very well
The cell just gets bigger when I enter more data (cell not locked in
vertical size with no scroll bar)
Do you know if there is some complete code or info to do this?
Thanks again

"Murray" wrote:

> Use a scrolling div.
>
> CAUTION - the contents of such things do NOT print, unless you explicitly
> style them to do so in a print stylesheet. In addition, they are not really
> the most user friendly way to present your content.
>
> But - if you must, then consider this -
>
> <td><div style="height 200px; overflow:auto;">tons of content
> here</div></td>
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
> > Has anyone got any recomendations to acheive the following
> >
> > I would like to have an upcomming events area in a cell eg
> >
> > Date, Event, Location etc (There would be many of these)
> > The idea is to have the data in a table and then have the ability to
> > scroll
> > the data/table in a cell.
> >
> > TIA
> > Regards Doug
> >
> >

>
>
>

  Reply With Quote
Old 30-03-2006, 11:39 PM   #4
Murray
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Sorry. Let me try again -

<td><div style="height:200px; overflow:auto;">tons of content
here</div></td>

(note the colon between 'height' and '200px;')

--
Murray
--------------
MVP FrontPage


"Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
news:4DC9C78B-2DCD-4734-A000-FA2166553670@microsoft.com...
> Thank Murray,
> tryed that bit of code however I'm not up with all this very well
> The cell just gets bigger when I enter more data (cell not locked in
> vertical size with no scroll bar)
> Do you know if there is some complete code or info to do this?
> Thanks again
>
> "Murray" wrote:
>
>> Use a scrolling div.
>>
>> CAUTION - the contents of such things do NOT print, unless you explicitly
>> style them to do so in a print stylesheet. In addition, they are not
>> really
>> the most user friendly way to present your content.
>>
>> But - if you must, then consider this -
>>
>> <td><div style="height 200px; overflow:auto;">tons of content
>> here</div></td>
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
>> news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
>> > Has anyone got any recomendations to acheive the following
>> >
>> > I would like to have an upcomming events area in a cell eg
>> >
>> > Date, Event, Location etc (There would be many of these)
>> > The idea is to have the data in a table and then have the ability to
>> > scroll
>> > the data/table in a cell.
>> >
>> > TIA
>> > Regards Doug
>> >
>> >

>>
>>
>>



  Reply With Quote
Old 31-03-2006, 12:12 AM   #5
=?Utf-8?B?RG91ZyBNYWM=?=
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Thanks again,
That works now, can you check out the site www.lodgearboreal.com.au
I have put it up as a test any ideas as to why it has a extra column on the
left?
Also is ther a way to have each line slit up into columns
so that the date s would be under each other etc?
"Murray" wrote:

> Sorry. Let me try again -
>
> <td><div style="height:200px; overflow:auto;">tons of content
> here</div></td>
>
> (note the colon between 'height' and '200px;')
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> news:4DC9C78B-2DCD-4734-A000-FA2166553670@microsoft.com...
> > Thank Murray,
> > tryed that bit of code however I'm not up with all this very well
> > The cell just gets bigger when I enter more data (cell not locked in
> > vertical size with no scroll bar)
> > Do you know if there is some complete code or info to do this?
> > Thanks again
> >
> > "Murray" wrote:
> >
> >> Use a scrolling div.
> >>
> >> CAUTION - the contents of such things do NOT print, unless you explicitly
> >> style them to do so in a print stylesheet. In addition, they are not
> >> really
> >> the most user friendly way to present your content.
> >>
> >> But - if you must, then consider this -
> >>
> >> <td><div style="height 200px; overflow:auto;">tons of content
> >> here</div></td>
> >>
> >> --
> >> Murray
> >> --------------
> >> MVP FrontPage
> >>
> >>
> >> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> >> news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
> >> > Has anyone got any recomendations to acheive the following
> >> >
> >> > I would like to have an upcomming events area in a cell eg
> >> >
> >> > Date, Event, Location etc (There would be many of these)
> >> > The idea is to have the data in a table and then have the ability to
> >> > scroll
> >> > the data/table in a cell.
> >> >
> >> > TIA
> >> > Regards Doug
> >> >
> >> >
> >>
> >>
> >>

>
>
>

  Reply With Quote
Old 31-03-2006, 12:26 AM   #6
Rob Giordano \(Crash\)
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

because that table has two columns - i guess you could line your content up
better by adding some rows to that table


"Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
news:5452DA48-DD87-4105-88E4-16EAAE4D9336@microsoft.com...
| Thanks again,
| That works now, can you check out the site www.lodgearboreal.com.au
| I have put it up as a test any ideas as to why it has a extra column on
the
| left?
| Also is ther a way to have each line slit up into columns
| so that the date s would be under each other etc?
| "Murray" wrote:
|
| > Sorry. Let me try again -
| >
| > <td><div style="height:200px; overflow:auto;">tons of content
| > here</div></td>
| >
| > (note the colon between 'height' and '200px;')
| >
| > --
| > Murray
| > --------------
| > MVP FrontPage
| >
| >
| > "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
| > news:4DC9C78B-2DCD-4734-A000-FA2166553670@microsoft.com...
| > > Thank Murray,
| > > tryed that bit of code however I'm not up with all this very well
| > > The cell just gets bigger when I enter more data (cell not locked in
| > > vertical size with no scroll bar)
| > > Do you know if there is some complete code or info to do this?
| > > Thanks again
| > >
| > > "Murray" wrote:
| > >
| > >> Use a scrolling div.
| > >>
| > >> CAUTION - the contents of such things do NOT print, unless you
explicitly
| > >> style them to do so in a print stylesheet. In addition, they are not
| > >> really
| > >> the most user friendly way to present your content.
| > >>
| > >> But - if you must, then consider this -
| > >>
| > >> <td><div style="height 200px; overflow:auto;">tons of content
| > >> here</div></td>
| > >>
| > >> --
| > >> Murray
| > >> --------------
| > >> MVP FrontPage
| > >>
| > >>
| > >> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
| > >> news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
| > >> > Has anyone got any recomendations to acheive the following
| > >> >
| > >> > I would like to have an upcomming events area in a cell eg
| > >> >
| > >> > Date, Event, Location etc (There would be many of these)
| > >> > The idea is to have the data in a table and then have the ability
to
| > >> > scroll
| > >> > the data/table in a cell.
| > >> >
| > >> > TIA
| > >> > Regards Doug
| > >> >
| > >> >
| > >>
| > >>
| > >>
| >
| >
| >


  Reply With Quote
Old 31-03-2006, 12:57 AM   #7
=?Utf-8?B?RG91ZyBNYWM=?=
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

I just added a one column one line table to a cell and then add the code
below and that created the extra column, I dont seem to be able to get ride
of the extra column

I have fixed the line up thing by just adding another table into the scoll
area with the required lines and columns

Its good when works

"Rob Giordano (Crash)" wrote:

> because that table has two columns - i guess you could line your content up
> better by adding some rows to that table
>
>
> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> news:5452DA48-DD87-4105-88E4-16EAAE4D9336@microsoft.com...
> | Thanks again,
> | That works now, can you check out the site www.lodgearboreal.com.au
> | I have put it up as a test any ideas as to why it has a extra column on
> the
> | left?
> | Also is ther a way to have each line slit up into columns
> | so that the date s would be under each other etc?
> | "Murray" wrote:
> |
> | > Sorry. Let me try again -
> | >
> | > <td><div style="height:200px; overflow:auto;">tons of content
> | > here</div></td>
> | >
> | > (note the colon between 'height' and '200px;')
> | >
> | > --
> | > Murray
> | > --------------
> | > MVP FrontPage
> | >
> | >
> | > "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> | > news:4DC9C78B-2DCD-4734-A000-FA2166553670@microsoft.com...
> | > > Thank Murray,
> | > > tryed that bit of code however I'm not up with all this very well
> | > > The cell just gets bigger when I enter more data (cell not locked in
> | > > vertical size with no scroll bar)
> | > > Do you know if there is some complete code or info to do this?
> | > > Thanks again
> | > >
> | > > "Murray" wrote:
> | > >
> | > >> Use a scrolling div.
> | > >>
> | > >> CAUTION - the contents of such things do NOT print, unless you
> explicitly
> | > >> style them to do so in a print stylesheet. In addition, they are not
> | > >> really
> | > >> the most user friendly way to present your content.
> | > >>
> | > >> But - if you must, then consider this -
> | > >>
> | > >> <td><div style="height 200px; overflow:auto;">tons of content
> | > >> here</div></td>
> | > >>
> | > >> --
> | > >> Murray
> | > >> --------------
> | > >> MVP FrontPage
> | > >>
> | > >>
> | > >> "Doug Mac" <DougMac@discussions.microsoft.com> wrote in message
> | > >> news:1C7E19A0-14E4-4E74-8D37-7D7901F15B01@microsoft.com...
> | > >> > Has anyone got any recomendations to acheive the following
> | > >> >
> | > >> > I would like to have an upcomming events area in a cell eg
> | > >> >
> | > >> > Date, Event, Location etc (There would be many of these)
> | > >> > The idea is to have the data in a table and then have the ability
> to
> | > >> > scroll
> | > >> > the data/table in a cell.
> | > >> >
> | > >> > TIA
> | > >> > Regards Doug
> | > >> >
> | > >> >
> | > >>
> | > >>
> | > >>
> | >
> | >
> | >
>
>
>

  Reply With Quote
Old 31-03-2006, 02:36 AM   #8
Trevor L.
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Doug Mac wrote:
> I just added a one column one line table to a cell and then add the
> code below and that created the extra column, I dont seem to be able
> to get ride of the extra column
>
> I have fixed the line up thing by just adding another table into the
> scoll area with the required lines and columns
>
> Its good when works


Hi from Australia.
The US people won't be posting too much at this hour.

I had a look at the row which has a scroll bar in it. You do have a nested
cell which may be what you mean by an extra column.

I have changed it a bit to remove this nesting and place the date in one
column and the details in another.
See if this suits you better. I have tested it as much as I can. Without all
the images,etc. I can't do too much, but it seems to work

<tr>
<td colspan="4" align="center">
<div style="height:100px; overflow:auto;">
<table border="0" width="100%" cellspacing="0" cellpadding="0"
id="table2">
<tr>
<td>Friday 7th April</td> <td>Lodge arboreal Master Elect 2nd Degree
Obligation</td>
</tr>

<tr>
<td>Friday 12th May </td> <td>Lodge Arboreal Installation</td>
</tr>

<tr>
<td>Friday 9th June </td> <td>Lodge Arboreal 3rd Degree</td>
</tr>

<tr>
<td>next date </td> <td>next detail </td>
</tr>

<tr>
<td>next date </td> <td>next detail </td>
</tr>

<tr>
<td>next date </td> <td>next detail </td>
</tr>
</tr>
</table>
</div>
</td>
</tr>

I just noticed. You have another group of rows underneath this which is
formatted the same way as mine, except that it doesn't scroll.

So it seems you are almost there.

--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au


  Reply With Quote
Old 31-03-2006, 06:52 AM   #9
=?Utf-8?B?RG91ZyBNYWM=?=
Guest
 
Posts: n/a
Default Re: Scrolling data/table in a cell

Many thanks,
All sorted out will work just fine now
Thanks again for your help
Regards Doug

"Trevor L." wrote:

> Doug Mac wrote:
> > I just added a one column one line table to a cell and then add the
> > code below and that created the extra column, I dont seem to be able
> > to get ride of the extra column
> >
> > I have fixed the line up thing by just adding another table into the
> > scoll area with the required lines and columns
> >
> > Its good when works

>
> Hi from Australia.
> The US people won't be posting too much at this hour.
>
> I had a look at the row which has a scroll bar in it. You do have a nested
> cell which may be what you mean by an extra column.
>
> I have changed it a bit to remove this nesting and place the date in one
> column and the details in another.
> See if this suits you better. I have tested it as much as I can. Without all
> the images,etc. I can't do too much, but it seems to work
>
> <tr>
> <td colspan="4" align="center">
> <div style="height:100px; overflow:auto;">
> <table border="0" width="100%" cellspacing="0" cellpadding="0"
> id="table2">
> <tr>
> <td>Friday 7th April</td> <td>Lodge arboreal Master Elect 2nd Degree
> Obligation</td>
> </tr>
>
> <tr>
> <td>Friday 12th May </td> <td>Lodge Arboreal Installation</td>
> </tr>
>
> <tr>
> <td>Friday 9th June </td> <td>Lodge Arboreal 3rd Degree</td>
> </tr>
>
> <tr>
> <td>next date </td> <td>next detail </td>
> </tr>
>
> <tr>
> <td>next date </td> <td>next detail </td>
> </tr>
>
> <tr>
> <td>next date </td> <td>next detail </td>
> </tr>
> </tr>
> </table>
> </div>
> </td>
> </tr>
>
> I just noticed. You have another group of rows underneath this which is
> formatted the same way as mine, except that it doesn't scroll.
>
> So it seems you are almost there.
>
> --
> Cheers,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>
>
>

  Reply With Quote
Old 04-04-2006, 04:47 AM   #10
=?Utf-8?B?Uk9D?=
Guest
 
Posts: n/a
Default RE: Scrolling data/table in a cell

As a non-programmer and complete novice, I would simply insert an excel
spreadsheet and clean it up to look the way I wanted it to. Easy to update
and maintain.

"Doug Mac" wrote:

> Has anyone got any recomendations to acheive the following
>
> I would like to have an upcomming events area in a cell eg
>
> Date, Event, Location etc (There would be many of these)
> The idea is to have the data in a table and then have the ability to scroll
> the data/table in a cell.
>
> TIA
> Regards Doug
>
>

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off