Copyright Douglas Rice,2005,doug.h.rice@btinternet.com, last modified 08/24/2005 22:23:03 terms of use The Author gives no warranty of any kind in relation to these Webpages. To the maximum extent permitted by law, the Author Douglas Rice, will not be liable for any loss or damage which you may suffer as a result of or connected to the download or use of these Web pages.
A linked list is used to prepend the latest instance of gbA[ userfield1 ].
The list is sorted ( alphbetically and case sensitive ) before presentation.
When displayed a speparate table is used for each value of USERFIELD1. Use the links below to jump to the table.
At the end of the page, is a dump of the objects using a recursive function. This shows the structure.
// r is the object to be printed out function decend( r, level ){ // dump a JavaScript Object passed to it var opStr = "" for ( var I in r ) { //opStr += level+" "+I+" = "+r[ I ] + " " + typeof( r[ I ] )"\n" if ( typeof( r[ I ] ) == "object" ){ //opStr += "\n===\n" opStr += level+" "+I+" [ \n" opStr += decend( r[ I ], level+" " ) opStr += level+" ] \n" } else { opStr += level+" "+I+" = "+r[ I ] +"\n" } } return opStr }