Ajax Layer JavaScript DHTML

http://dynapi.sourceforge.net/
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999


DynAPI Examples - HTML CheckBox


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


var tp = new Template('This is the Template:
Select an option below:
{@chk1}Kitchen {@chk2}Living Room
',100,100,250,200,'#EEEEEE');
tp.addChild(new HTMLCheckBox(null,'kit',true),'chk1');
tp.addChild(new HTMLCheckBox(null,'lroom'),'chk2');
tp.chk2.addEventListener({
  onclick:function(e){
    var o=e.getSource();
    alert('This is a Check Box with a value of "'+o.getValue()+'"');
  }
});
dynapi.document.addChild(tp);






           
       
dynapi.zip( 791 k)