<!-- SophiaKnows --><!-- SophiaKnows -->

JAVASCRIPT DATABASE VIEWER
Rev 6: December 2004

Search:
 
  
 


Source/Downloads
  • database.js (4k)
  • db.viewer.html (4k)
  • db.editor.html (4k)
  • database.zip (4k)
  • In General: This template demonstrates a library of generic JavaScript drivers for manipulating and/browsing an anonymous array or list of user-defined database of objects

    The example above displays list of records encapsulating data for 100 U.S. Senators. However, the library drivers can dynamically acquire, manipulate and display data and parameters from virtually any generic JavaScript data source.

    Novice developer's can quickly modify several pre-existing templates (including a phonebook, image and links manager) to create cool custom applications and page controls Experienced developers can quickly plug in pre-existing user defined application data structures.

    Configuration

    function Senator(name,state,party,entered,term) {
    	this.name=name;
    	this.state=state;
    	this.party=party;
    	this.entered=entered;
    	this.term=term;
        }
    

    < CODEBASE | TOP^ | MAINPAGE >

    Text & Design By Tony Pisarra
    © SophiaKnows 1998-2004