473,785 Members | 2,557 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

scrolling tables


trying to use this script for scrolling tables found at this link:

http://www.litotes.demon.co.uk/examp...bleScroll.html

The top left corner in the table grid is hidden from being displayed.

I see:
-- the code is creating DIV's and
-- overrides are hidden
but still can't see anyway to modify so top left corner can be a displayed label to the frozen column.

can anyone advise how to show the top left corner block as part of the left frozen column ???
how to show the top left corner block as part of the left frozen column ???
Feb 18 '06 #1
12 1805
Jon Paal wrote:
trying to use this script for scrolling tables found at this link:
http://www.litotes.demon.co.uk/examp...bleScroll.html


Repeatedly posting your question won't get you anywhere except in the
kill-file of people who might actually be able to answer your question.

Nevertheless, your question is best addressed to the script's author. First,
you should check whether or not he will allow you to use his code. If not,
then your question doesn't matter. If you reach an agreement, then he might
be able to help with your question.

Either way, please stop posting the same message over and over.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Feb 18 '06 #2
the author has not responded to emails and there is not adequate info on his website.

so I will keep posting. You never know when someone will come along that may be able to help

Feb 19 '06 #3
JRS: In article <11************ *@corp.supernew s.com>, dated Sat, 18 Feb
2006 21:07:21 remote, seen in news:comp.lang. javascript, Jon Paal
<Jo*@nospam.Paa l> posted :
the author has not responded to emails and there is not adequate info on his
website.

so I will keep posting. You never know when someone will come along that may be
able to help


Read the newsgroup FAQ until you understand the situation.

--
© John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.c om/faq/> JL/RC: FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Feb 19 '06 #4
what ?
Feb 20 '06 #5
VK
Top left corner is not hidden: it is not used.

<thead>
<tr>
<th></th>

Place whatever you want in <th></th> keeping in mind to not break the
table layout by too big content.

Ask in <comp.infosyste ms.www.authorin g.html> if more questions arise.

Can you stop now harassing this newsgroup? ;-)

Feb 20 '06 #6
I already tried that.
The script rewrites the table somehow and then blocks the top left corner.

Any other ideas ?
Feb 20 '06 #7
Jon Paal wrote:
I already tried that.
The script rewrites the table somehow and then blocks the top left corner.

What seems to happen is that the script clones the table twice so that
there are three tables. One is used for the main body, one for the
scrolling header and one for the left column. A div encases the body
and gives you the scroll bars. Script keeps the header and left column
in sync with scrolling of the main body.

There's quite a bit happening with styles too.

A suggestion is to clone the top left cell, put it in a table (or maybe
just a div) and position it where you want it. You should be able to
place the top and left based on the position of the header and left
column clones and use a height and width based on the same elements or
the position of the div encasing the main body.

But have you got permission to use the code?
--
Rob
Feb 20 '06 #8
not sure what you mean by "clone the top left cell". Could you elaborate a bit more ?

There's nothing on the source that says it can't be used.

Thanks for helping
Feb 21 '06 #9
Jon Paal wrote:
not sure what you mean by "clone the top left cell". Could you elaborate a bit more ?

There's nothing on the source that says it can't be used.


The main body of the table is revealed through a div. A clone of the
table is revealed through a div that shows only the top row and hides
the left-most cell. A similar trick is used to show the left column and
hide the top cell.

If you simply extend either the top div or the left div, the top left
cell will scroll either up or across, depending on which one you use.

So make a clone of the cell and stick it in a table and put it where the
top left cell would be. Or clone the entire table and reveal just the
top left corner through a div like the rest of the table(s). Or clone
just the cell content, put it in a div that mimics the size of the
original cell and put it in the right place.
--
Rob
Feb 21 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
3739
by: Skip Hollowell | last post by:
I have what is now a table with a header row and then obviously rows of data beneath. If the data is more than 50 or 6 rows (100px) then the rows will scroll using overflow:auto. This all works great, but I have alignment issues with the columns. I can get things to line up in either case (with scrolling or without scrolling) but not in both. Currently, I am using Tables to align everything and giving each row a % width. I would love...
4
2880
by: Roedy Green | last post by:
I noticed that the scrolling tables at http://www.safesearching.com/billmaher/print/transcripts.shtml Work fine in Opera, Firefox, Mozilla, Netscape and IE in the latest versions. I looks as though their tactic uses JavaScript. -- Canadian Mind Products, Roedy Green. http://mindprod.com Again taking new Java programming contracts.
6
1550
by: Jon Paal | last post by:
an excellent working solution for scrolling tables appears at this link http://www.litotes.demon.co.uk/example_scripts/tableScroll.html author has no contact page, but I have a question about the display of the table. the top left corner in the table grid is hidden from being displayed. I have tried to figure out where it is being hidden but can't find the code to allow it to be shown as part of the left frozen column. can anyone...
17
1520
by: Jon Paal | last post by:
trying to use this script for scrolling tables found at this link: http://www.litotes.demon.co.uk/example_scripts/tableScroll.html The top left corner in the table grid is hidden from being displayed. I see: -- the code is creating DIV's and -- overrides are hidden
1
2366
by: asearle | last post by:
Hi everyone, I have some simple but very long reports that I would like to present in tabular format. To make this more comfortable for the reader I would like the headers to remain static at the top of the tables and just the content to scroll. I got this working with 'DIV' commands but found that, as various users re-sized their browsers, the column headers would go out of line. I tried fixing this with column width declarations but...
1
2641
by: jonceramic | last post by:
Hi All, I've noticed that in a lot of my forms and tables, when I'm on continuous view, I can't scroll when the focus is in a field or on a control. Meaning, if I have a list, and start scrolling, it always jumps back to the focus the second the scrolling is done. While I like this in some cases, it can get to be annoying. I try to
8
3368
by: rmurgia | last post by:
Has anyone noticed that scrolling through objects i.e. forms, reports, tables, etc with Access 2007 is not as easy as Access 2003? I have a database with a large number of objects. When scrolling through with the down arrow or page down, it seems that items get caught in the buffer making scrolling through large amounts of objects cumbersome. After taking my finger off the key, the cursor continues to move. If I push down and let go quickly,...
0
9647
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9485
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10161
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10098
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9958
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8986
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5390
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5523
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4058
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.