RadioButton

compared with
Current by Arturo Zambrano
on Dec 11, 2014 04:13.


 
Key
These lines were removed. This word was removed.
These lines were added. This word was added.

View page history


There are 10 changes. View first change.

 h2. Overview
 _Since 4.0_
  
The _ace:radioButton_ component is a simple true/false selection used to toggle a value that is bound to the button. This component is available since release 3.3.0_P02
  The _ace:radioButton_ component is a simple true/false selection used to toggle a value that is bound to the button. This component is available since release 3.3.0_P02. The buttonGroup component may be used to manage a group of radioButton components.
  
{tip}See the ICEfaces Showcase [Live Demo|http://icefaces-showcase.icesoft.org/showcase.jsf?grp=aceMenu&exp=radioButton] of this component, complete with source code.{tip}
  
  
 h2. Getting Started
 {panel}
 {code:xml|borderStyle=dashed}
 <html ... xmlns:ace="http://www.icefaces.org/icefaces/components">
 <h:body >
  <h:form>
  <ace:radioButton
  value="{button.checked}"
  label="radioButton"/>
  </h:form>
 </h:body>
 </html>
 {code}
 {panel}
 h2. Attributes
  
{tip:title=TagLib Documentation}This section covers attributes involved in the typical use-cases for this component. For reference, the complete taglib documentation for this component is available [here|http://www.icefaces.org/docs/v3_latest/ace/tld/ace/radioButton.html].{tip}
  {tip:title=TagLib Documentation}This section covers attributes involved in the typical use-cases for this component. For reference, the complete taglib documentation for this component is available [here|http://www.icefaces.org/docs/v4_latest/ace/tld/ace/radioButton.html].{tip}
 {panel}
 *label* The label of the button-what the user sees that relates to that particular button. For example, "Remember Me"
 {panel}
 {panel}
 *labelPosition* Position of label relative to the radio button. Supported values are "left/right/top/bottom/none". Default is "none".
 {panel}
 {panel}
*group* ID of button group component if this button is outside of the button group but wants to logically belong to the group.
 {panel}
 {panel}
 *style* a pass through to the root element of the component.
 {panel}
 {panel}
 *styleClass* a pass through to the root element of the component.
 {panel}
 {panel}
 *tabindex* a pass through to the root element of the component, default=0.
 {panel}
 {panel}
 *disabled* a pass through to the root element of the component.
 {panel}
 {panel}
 The following attributes are supported as pass-thru attributes: *accesskey*, *alt*, *dir*, *label*, *lang*, *style*, *tabindex*, *title*, *type*, *onchange*, *onselect*, *onclick*, *ondblclick*, *onkeydown*, *onkeypress*, *onkeyup*, *onmousedown*, *onmousemove*, *onmouseout*, *onmouseover*, *onmouseup*, *onblur*, *onfocus*
 {panel}
  
 h2. Event Listeners
  
 As a descendant of UIInput, this component supports a value change listener.
  
 | valueChangeListener | Method that will be notified when a new value has been set for this component |
  
 h2. Client Behavior Events
  
| activate | Fired when the button is clicked or pressed by any other means (default event). |
  | action | Fired when the button is clicked or pressed by any other means (default event). |
  
{tip}Prior to 4.0 this event was named "activate". The "activate" event name is now deprecated but treated as an alias for "action" for backwards compatibility with existing applications.{tip}
  
 h2. JavaScript API
  
None.
  h4. ICEfaces 3.x
  
The client side component object is exposed through the global variable name specified in the *widgetVar* attribute.
  
 h4. ICEfaces 4+
  
 The "widgetVar" attribute on the ACE components has been removed in ICEfaces 4 and in its place a new "ice.ace.instance()" client JavaScript object lookup API has been introduced. The reason for this change is to enable lazy-initialization of the ACE component JavaScript objects to improve runtime performance and reduce browser memory use.
  
 {code}var widget = ice.ace.instance('frm:componentId);{code}
  
 {tip}The _ice.ace.instance_ function requires the _full_ client id of the component to be specified, such as "j_idt77:componentId" instead of just "componentId". To reduce the complexity of working with complete IDs with this function it may be preferable in some cases to use {{prependId="false"}} in the enclosing form (e.g. _<h:form prependId="false">_).{tip}
  
 {info}This component doesn't have a client-side API made specifically to be used by application developers. However, the component's internal methods and variables can be accessed in this way, including the underlying jQuery object and objects from underlying Javascript libraries (if applicable), and can be used for whatever purpose a developer might have in mind.
 {info}
  
 h2. Keyboard Support
  
 Default browser keyboard support for {{<button>}} elements (i.e. tabbing in and out, pressing space to activate).
  
 The following ARIA roles are supported: radio.
  
 h2. CSS Classes
  
 The following markup represents the basic HTML structure of the component and the CSS classes it uses.
  
 {code:xml}
 <!-- Root container -->
 <div class="ice-ace-radiobutton [user defined classes]" style="[user defined styles]">
  <span class="ice-ace-radiobutton-main">
  <span>
  <button class="ui-corner-all ice-ace-radiobutton-selected">
  <!-- Icon -->
  <span class="fa fa-dot-circle-o fa-lg"></span>
  </button>
  </span>
  </span>
 </div>
 {code}
  
 h2. Known Issues
  
 None.
  
 h2. Additional Resources
  
 None.

© Copyright 2021 ICEsoft Technologies Canada Corp.