XUL Programmer's Reference Manual

<radiogroup>

Attributes Common Children
id radio
   

The <radiogroup> element is a container for radio items. Radio items need to be contained within radiogroups in order to provide the exclusive selection functionality that characterizes them.

 
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 

<window id="radio show" 
  xmlns:html="http://www.w3.org/1999/xhtml"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

  <box style="background-color: lightblue;">
	
    <radiogroup orient="vertical">
	<radio value="James Joyce" />
	<radio value="Joseph Conrad" />
	<radio value="William Faulkner" />
    </radiogroup>
  </box>
</window>


 

 
 

Last updated: 3/20/00 Ian Oeschger