Date Name Downloads
Mar 26, 2007 0.3.1a 5514
Mar 25, 2007 0.3.1 459
Mar 12, 2007 0.3.0 495
Feb 23, 2007 0.2.3 546
Feb 19, 2007 0.2.2 272
Feb 9, 2007 0.2.1 333
Feb 5, 2007 0.2.0 793
Aug 1, 2005 0.1.3d beta 3463
Feb 21, 2005 0.1.3c beta 1300
Feb 16, 2005 0.1.3b beta 240
Feb 12, 2005 0.1.3a beta 202
Dec 23, 2004 0.1.3 beta 388
Feb 8, 2004 0.1.2 beta 277
Feb 4, 2004 0.1.2 beta 277
Jan 23, 2004 v0.1a (pre-release) 99
Jan 16, 2004 v0.1 (pre-release) 115
0.2.1
0.2.1
Feb 9, 2007
GNU GPL
333

Added support to outlines with links to forms, pages, urls, etc. 0.2.0 only supported links to views and folders.



Simplified the creation of a basic Domino User Interface.



For example, add code similar to below in the JS Header of a page or in a JS file.



var myApp = new DWT.widget.DominoUI({

outlineUrl: &quot;mainOL&quot;,<br/>
viewUrl: &quot;($formulaExamples)&quot;,<br/>
viewTitle: &quot;Formula Examples&quot;<br/>

});



YAHOO.ext.EventManager.onDocumentReady(myApp.init, myApp, true);



The DWT.widget.DominoUI class uses the DWT.widget.DominoUIOutline and the DWT.widget.DominoUIView classes in order to build a basic DomioUI.



The last line of YAHOO.ext.EventManager.onDocumentReady(myApp.init, myApp, true) basically just tells the browser to wait till the document has loaded before calling the myApp.init method which will build the UI.