change
Description
fires when radio buttons are checkedParameters
The callback of the event takes an object with the following parameter:
- value - (array) an array of ids of the selected radio buttons
Example
<script>
function handleChange({value}) {
console.log(value);
}
</script>
<RadioButtonGroup onchange={handleChange}/>
Details
The handler function receives an object with an array of ids of the selected radio buttons.