Sets or gets the change function. It is called when a value is changed and the changed item is passed as parameter. The item argument has the following properties: enabled: boolean, encode: boolean, label: string, value: string, cssClass: string and checked: boolean.
$('#myRadioButtonGroup').jqxRadioButtonGroup({change: (item) => { }});
Sets or gets whether the CheckBoxGroup is disabled.
disabled is set to true
$('#myRadioButtonGroup').jqxRadioButtonGroup({disabled: true});
Sets or gets the items. Each item could be a string or an object. The object has the following properties: enabled: boolean, encode: boolean, label: string, value: string, cssClass: string and checked: boolean.
Sets or gets the items
$('#myRadioButtonGroup').jqxRadioButtonGroup({items: [{label: 'Item 1', value: '1'}, {label: 'Item 2', value: '2'}]});
Sets or gets the value array. This property determines the checked item(s).
Sets or gets the value
$('#myRadioButtonGroup').jqxRadioButtonGroup({value: ['1']});
Sets or gets the items layout. It can be 'horizontal' or 'vertical'.
Sets or gets the layout property.
$('#myRadioButtonGroup').jqxRadioButtonGroup({layout: horizontal});
Sets or gets the items label position. It can be 'before' or 'after'.
Sets or gets the labelPosition property.
$('#myRadioButtonGroup').jqxRadioButtonGroup({labelPosition: before});
Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts.
rtl is set to true
$('#jqxRadioButtonGroup').jqxRadioButtonGroup({rtl : true});
Sets the widget's theme.
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.material.css" type="text/css" />
theme is set to 'material'
$('#myRadioButtonGroup').jqxRadioButtonGroup({theme: material});
Gets the value.
Gets an item value at index.
Enables an item at index.
Disables an item at index.
Checks an item at index.
Unchecks an item at index.
Unchecks all items.
Checks an item by value.
Unchecks an item by value.
Disables the CheckBoxGroup.
Destroys the widget.
Invoke the destroy
thod.
$('#jqxCheckBox').jqxRadioButtonGroup('destroy');
Enables the CheckBoxGroup.
Renders the widget.
Invoke the render
method.
$('#jqxCheckBox').jqxRadioButtonGroup('render');
Sets or gets the value.