Radio"

From Documentation
m ((via JWB))
 
(2 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
= Employment/Purpose =
 
= Employment/Purpose =
  
A <tt>radio</tt> button is a component that can be turned on and off. Radio buttons are grouped together in a group, called <tt>radiogroup</tt>. Only one radio button with the same group may be selected at a time.
+
A <code>radio</code> button is a component that can be turned on and off. Radio buttons are grouped together in a group, called <code>radiogroup</code>. Only one radio button with the same group may be selected at a time.
  
 
= Example =
 
= Example =
Line 17: Line 17:
  
 
<source lang="xml" >
 
<source lang="xml" >
<window title="Radiobox &amp; Radio Demo" width="200px" border="normal">
+
     <vlayout>
     <vbox>
 
 
         <radiogroup onCheck="fruit.value = self.selectedItem.label">
 
         <radiogroup onCheck="fruit.value = self.selectedItem.label">
             <radio label="Apple" />
+
             <radio label="Apple"/>
             <radio label="Orange" />
+
             <radio label="Orange"/>
             <radio label="Banana" />
+
             <radio label="Banana"/>
 
         </radiogroup>
 
         </radiogroup>
 
         You have selected :
 
         You have selected :
         <label id="fruit" style="color:red" />
+
         <label id="fruit" style="color:red"/>
     </vbox>
+
     </vlayout>
</window>
 
 
</source>
 
</source>
  
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 47: Line 45:
 
=Use Cases=
 
=Use Cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 63: Line 61:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 10:42, 12 January 2022

Radio

Employment/Purpose

A radio button is a component that can be turned on and off. Radio buttons are grouped together in a group, called radiogroup. Only one radio button with the same group may be selected at a time.

Example

ZKComRef radio.png

    <vlayout>
        <radiogroup onCheck="fruit.value = self.selectedItem.label">
            <radio label="Apple"/>
            <radio label="Orange"/>
            <radio label="Banana"/>
        </radiogroup>
        You have selected :
        <label id="fruit" style="color:red"/>
    </vlayout>

Supported Events

Name
Event Type
None None

Supported Children

*NONE

Use Cases

Version Description Example Location
3.6 Radio buttons with Listitems http://www.zkoss.org/forum/listComment/3867
3.6 Radiogroup radio's in seperate table/grid rows http://www.zkoss.org/forum/listComment/9002

See also: Radiogroup

Version History

Last Update : 2022/01/12


Version Date Content
     



Last Update : 2022/01/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.