GUI Components JavaScript DHTML



DynAPI Examples - HTML RadioButton


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


var tp = new Template(
    'This is the Template (choose Car Color)
\n' +
    '
\n' +
    '  
\n' +
    '    \n' +
    '      \n' +
    '        \n' +
    '          Select an option below
\n' +
    '          {@optblue}Blue {@optred}Red\n' +
    '        \n' +
    '      \n' +
    '    \n' +
    '  \n' +
    '
\n',
    100,100,250,200,'#EEEEEE'
);
tp.addChild(new HTMLRadioButton(null,'color','Blue Car',true),'optblue');
tp.addChild(new HTMLRadioButton(null,'color','Red Car'),'optred');
tp.optblue.addEventListener({
  onclick:function(e){
    var o=e.getSource();
    alert('This is a Radio Button with a value of "'+o.getValue()+'".');
  }
});
tp.optred.addEventListener({
  onclick:function(e){
    var o=e.getSource();
    alert('This is a Radio Button with a value of "'+o.getValue()+'".');
  }
});
dynapi.document.addChild(tp);






           
       
dynapi.zip( 791 k)