GUI Components JavaScript DHTML



DynAPI Examples - HTML Drop Down Menu


dynapi.library.setPath('./dynapisrc/');
dynapi.library.include('dynapi.api');
dynapi.library.include('TemplateManager');
dynapi.library.include('HTMLDropDownMenu');
dynapi.library.include('HTMLButton');


var o={
  'http://www.sourceforge.net':'SourceForge.net',
  'http://dynapi.sourceforge.net':'DynAPI',
  'http://javascript.internet.com':'JavaScript Source',
  'http://www.w3c.org':'The World Wide Web Consortium (W3C)',
  'http://www.linux.org':'The Linux Home Page',
  'http://www.javascript-games.org/':'Javascript Games!',
  'http://www.dannyg.com/pubs/jsb/index.html':'JavaScript Bible Series'
};
var t = 'This is the Template:
Select a website:
{@ddm} {@btnGo}
';
var tp = new Template(t,100,100,350,200,'#EEEEEE');
tp.addChild(new HTMLButton(null,' > ','Click here to view site'),'btnGo');
tp.addChild(new HTMLDropDownMenu(null,o),'ddm');
tp.btnGo.addEventListener({
  onclick:function(e){
    alert(tp.ddm.getSelected());
  }
});
dynapi.document.addChild(tp);






           
       
dynapi.zip( 791 k)