radio.addEvent( radio.getHTMLElement().getId(), "alert", "ClICk");
}
public void addCheck() {
XPanel panel = (XPanel)findComponent( obj, "panel" );
XCheckbox check = new XCheckbox( "check" );
XLabel check_txt = new XLabel( "New Check Box", "check_txt" );
panel.add( check.getHTMLElement() );
panel.add( check_txt.getHTMLElement() );
}