crm:selectOneRadio
Overview
The <crm:selectOneRadio> tag is used to display an element on the page that allows user to choose a single item from a collection.
Attributes
Name | Required | Type | Default | Description |
---|---|---|---|---|
className | false | String | null | The class name of the value of the component. |
columnClasses | false | String | ui-grid-col-12 | Comma separated list of column style classes of the gird layout that will be used to display the component. Column style class should be prefixed with ui-grid-col- and suffixed with the number of columns that content will take (out of 12). For example, for two columns with the same size the columnClasses should be "ui-grid-col-6,ui-grid-col-6". |
columns | false | Integer | 1 | Number of columns of the gird layout that will be used to display the component. |
displayValue | true | String | null | The displayed value of the component in view mode. |
id | true | String | null | Unique identifier of the component. |
itemLabel | true | String | name | Label of the item in the collection. |
labelKey | false | String | null | A valid key defined in translation properties file. Its translation through the glossary will be used as the presentable name of the component. |
layout | false | String | responsive | Layout of the radio buttons. Allowed values are lineDirection, pageDirection, custom, responsive and grid. |
managedBean | true | String | null | The name of the Java managed bean class that will be used for retrieving the component values. |
mandatory | false | Boolean | false | Marks component as required. |
mode | false | String | The mode of the managed bean. | The mode of the component. Allowed values are VIEW and EDIT. |
onChangeFunction | false | String | null | Defines the function call triggered when input element loses focus and its value has been modified since gaining focus. |
optionsList | true | List | null | A collection of available items in the collection. |
process | false | String | @this and the value of the refresh attribute | Component(s) to process in partial request. |
radioButtonColumns | false | Integer | 1 | Number of columns in radio buttons layout. |
readonly | false | Boolean | false | Flag indicating that this component will prevent changes by the user. |
refresh | false | String | @this | Component(s) to update with ajax. |
type | false | String | null | The type of the value of the component. |
value | true | Object | null | The value of the component. |
visible | false | Boolean | true | Controls the visibility of the component. |
Getting Started
The following example shows a select one radio component.