Edit in GitHubLog an issue

sp-radio-group

Since: UXP v4.1

Renders a group of radio buttons horizontally or vertically (column layout), with an optional field label.

Radio groups

See:

Example

Copied to your clipboard
<sp-radio-group>
<sp-label slot="label">Select a product:</sp-label>
<sp-radio value="ps">Adobe Photoshop</sp-radio>
<sp-radio value="xd">Adobe XD</sp-radio>
</sp-radio-group>

Layout

By default, radio groups are laid out horizontally. If you add the column attribute, the radio group will be laid out vertically.

Copied to your clipboard
<sp-radio-group column>
<sp-radio value="ps">Adobe Photoshop</sp-radio>
<sp-radio value="xd">Adobe XD</sp-radio>
</sp-radio-group>

Responding to events

You can respond to changes in the radio group using the change event.

Copied to your clipboard
document.querySelector(".yourRadioGroup").addEventListener("change", evt => {
console.log(`Selected item: ${evt.target.value}`);
})
Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2023 Adobe. All rights reserved.