Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback on: Dynamic Table Sorting, August 27, 2002 at 04:13:13:

You are here: irt.org | About | Feedback | 4098 [ previous next ]

Feedback on:
Dynamic Table Sorting

Sent by
matthew on August 27, 2002 at 04:13:13:

Length:
Just right

Comments:
Lou Neveu wanted to change the last column to a link instead of just plain data.
Well just change the data into a link!
var width = 4;
myObjectArray[objectArrayIndex++] = new myObject('Number','Text','Date','Name');
myObjectArray[objectArrayIndex++] = new myObject(100,'abc','19971104','Me');

becomes

var width = 4;
myObjectArray[objectArrayIndex++] = new myObject('Number','Text','Date','Name');
myObjectArray[objectArrayIndex++] = new myObject(100,'abc','19971104','<a href="http://www.me.com">Me</a>');

as simple as that

Would be nice to see a solution that would read a datafile in Netscape.


Other feedback on 'Dynamic Table Sorting' - show all

©2018 Martin Webb