473,386 Members | 2,078 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

need help on editing existing script for scrolling tables

an excellent working solution for scrolling tables appears at this link

http://www.litotes.demon.co.uk/examp...bleScroll.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 help me to show the top left corner block as part of the left frozen column ???
Feb 11 '06 #1
6 1517
Jon Paal wrote:
an excellent working solution for scrolling tables appears at this
link http://www.litotes.demon.co.uk/examp...bleScroll.html
Not so excellent, as it creates multiple elements within a page with the
same ID, which is illegal.
author has no contact page, but I have a question about the display
of the table.
Author has explicitly stated that no one may use his code, and would not be
able to afford the licensing rights even if they wanted to.
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.


The code is not written to be understood by humans, as it is compacted,
undocumented, and written in a way that does not lead to easy understanding.
Author has stated that it is an example, and not to be reused.

If you wish to create a scrolling table, I would advise against using the
above url as an example.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Feb 12 '06 #2
I don't find anything on those pages which says the scripts can't be used .

can't be too illegal, so far, this is the only example of a two way scrolling script that actually works in both firefox and ie
browsers, and I've been looking at a lot of script/css examples.



"Matt Kruse" <ne********@mattkruse.com> wrote in message news:ds********@news4.newsguy.com...
Jon Paal wrote:
an excellent working solution for scrolling tables appears at this
link http://www.litotes.demon.co.uk/examp...bleScroll.html


Not so excellent, as it creates multiple elements within a page with the same ID, which is illegal.
author has no contact page, but I have a question about the display
of the table.


Author has explicitly stated that no one may use his code, and would not be able to afford the licensing rights even if they
wanted to.
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.


The code is not written to be understood by humans, as it is compacted, undocumented, and written in a way that does not lead to
easy understanding. Author has stated that it is an example, and not to be reused.

If you wish to create a scrolling table, I would advise against using the above url as an example.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com

Feb 12 '06 #3
Matt Kruse wrote:
Jon Paal wrote:
an excellent working solution for scrolling tables appears
at this link
http://www.litotes.demon.co.uk/examp...bleScroll.html
Not so excellent, as it creates multiple elements within a
page with the same ID, which is illegal.


Multiple elements with the same id are invalid HTML not illegal. As all
but one instance of that element are created by cloning the first they
only actually have the same ID if the browser copies the ID when it
clones the element. If the browser cared about the uniqueness of the ID
then it would not copy the ID when it cloned the element.
author has no contact page, but I have a question about the
display of the table.


Author has explicitly stated that no one may use his code,


Not true, I have explicitly state that the code is copyright.
and would not be able to afford the licensing rights even
if they wanted to.
That seems unlikely as well, it is entirely possible that someone could
afford the rights, though offers to date have been at least one zero
short of being taken seriously.
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.


The headers for the table are in DIV with their CSS overflow properties
set to hidden. The amount of the contents of the DIV shown is determined
by the containing DIV's size and the offsets of the content.
The code is not written to be understood by humans, as it
is compacted, undocumented, and written in a way that does
not lead to easy understanding.
In the context of that page some of the code is compacted, but the
compacted parts have been published elsewhere in a commented from.
Author has stated that it is an example,
Yes it is an example of what can be done, and so a demonstration that
highlight shortcomings in other examples and some commercial offerings.
and not to be reused.
It was designed to be easily re-used, and indeed it gets re-used
frequently. It is just not intended to be used at all by people who do
not want to address the copyright issue.
If you wish to create a scrolling table, I would advise
against using the above url as an example.


I take it you are still bitter because I refused to explain the
algorithms I used when you asked, even though I did explain that they
are on no use to the context for which you wanted to write your
scrolling table.

Richard.
Feb 12 '06 #4
Richard Cornford wrote:
I take it you are still bitter because I refused to explain the
algorithms I used when you asked


No, I'm not bitter, but I still disagree with your approach and requirement
for compensation for others to benefit from your work.

If you're going to put up a proof of concept like this, you should at least
make it clear that you are not doing so to help others, and perhaps make it
clear how much money you want in order for someone to use the code.
Otherwise your examples may be confused with an altruistic effort (your pet
phrase) to help others create similar solutions.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Feb 12 '06 #5
So , where in the code would I change the DIV width to reveal the top left corner ? I don't see anything in the css to resolve this
item.

Also, are you saying the code is to be purchsed before use ? I don't see anyplace that shows a price for the code ?

TIA
"Richard Cornford" <Ri*****@litotes.demon.co.uk> wrote in message news:ds*******************@news.demon.co.uk...
Matt Kruse wrote:
Jon Paal wrote:
an excellent working solution for scrolling tables appears
at this link
http://www.litotes.demon.co.uk/examp...bleScroll.html


Not so excellent, as it creates multiple elements within a
page with the same ID, which is illegal.


Multiple elements with the same id are invalid HTML not illegal. As all
but one instance of that element are created by cloning the first they
only actually have the same ID if the browser copies the ID when it
clones the element. If the browser cared about the uniqueness of the ID
then it would not copy the ID when it cloned the element.
author has no contact page, but I have a question about the
display of the table.


Author has explicitly stated that no one may use his code,


Not true, I have explicitly state that the code is copyright.
and would not be able to afford the licensing rights even
if they wanted to.


That seems unlikely as well, it is entirely possible that someone could
afford the rights, though offers to date have been at least one zero
short of being taken seriously.
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.


The headers for the table are in DIV with their CSS overflow properties
set to hidden. The amount of the contents of the DIV shown is determined
by the containing DIV's size and the offsets of the content.
The code is not written to be understood by humans, as it
is compacted, undocumented, and written in a way that does
not lead to easy understanding.


In the context of that page some of the code is compacted, but the
compacted parts have been published elsewhere in a commented from.
Author has stated that it is an example,


Yes it is an example of what can be done, and so a demonstration that
highlight shortcomings in other examples and some commercial offerings.
and not to be reused.


It was designed to be easily re-used, and indeed it gets re-used
frequently. It is just not intended to be used at all by people who do
not want to address the copyright issue.
If you wish to create a scrolling table, I would advise
against using the above url as an example.


I take it you are still bitter because I refused to explain the
algorithms I used when you asked, even though I did explain that they
are on no use to the context for which you wanted to write your
scrolling table.

Richard.

Feb 12 '06 #6
Matt Kruse wrote:
Richard Cornford wrote:
I take it you are still bitter because I refused to
explain the algorithms I used when you asked
No, I'm not bitter,


If you say so.
but I still disagree with your approach and
requirement for compensation for others to benefit
from your work.
I am not asking for compensation for people to benefit from my work, I
am just requiring compensation from people who want to use my code.
If you're going to put up a proof of concept like this,
you should at least make it clear that you are not doing
so to help others,
So your don't think people will benefit form seeing what can be done? Or
looking at how it is done in a specific instance? Or that the general
quality of commercial offerings would be improved from coexisting with
examples that list and address pertinent issues.
and perhaps make it clear how much money you want in
order for someone to use the code.
I don't want any money for it, in the sense that I don't want to be
bothered with the business of selling my software. And as a result I am
not at all interested in any offers that do not make it unambiguously
worth my while to sell anything.
Otherwise your examples may be confused with an
altruistic effort (your pet phrase) to help others
create similar solutions.


That doesn't seem to be the source of confusion in this case. Here the
confusion seems to be an inability to recognise a copyright statement
and confusing the script with something intended to allow people to get
away with not learning how to create something similar for themselves.

Richard.
Feb 12 '06 #7

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

Similar topics

3
by: P Wolpert | last post by:
This is my first post. I hope I don't sound stupid. I have a script conflict when I put two scripts on one page. Both scripts will work if I use one at a time but the menu button script will not...
2
by: Dennis Ruppert | last post by:
I created a routine to read and edit the description properties of tables, (the one you see in the database window). It works just fine. This is the basic code behind it, I substituted all my...
19
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate...
0
by: Raterus | last post by:
Here is my only problem with using the datagrid to edit data. Say I have a moderate sized table, with about 15 columns. I want to allow a user to be able to edit most all of these fields, except...
1
by: Jennyfer J Barco | last post by:
Hello again I have a datagrid and I'm showing many records. I need 2 things: I need that everytime they scroll down, the header stays lock so the user can see it all the time. I need to scroll...
2
by: P2P | last post by:
Hi I am wondering if someone know of a free cross-browsers vertical scrolling script that - is cross cross-browsers - will call the scrolling content from an external html page or from a...
2
by: sorobor | last post by:
dear sir .. i am using cakephp freamwork ..By the way i m begener in php and javascript .. My probs r bellow I made a javascript calender ..there is a close button ..when i press close button...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.