Radio buttons bug

I think I found a bug on radio buttons.
The onChange event will only be fired when clicking on the label and not when clicking on the circle.

I’m using React. This is the code:

<label>
<input type="radio" value="photos" name="options" onChange={this.handleOptionChange}/>
<span>Photos</span>
</label>
<label>
<input type="radio" value="icons" name="options" onChange={this.handleOptionChange}/>
<span>Icons</span>
</label>

Version 26.0.21.3 (Prerelease)

Video seems not to work …

Workaround: Right click on the video > Copy address > Paste in Browser > Download video

@kerrishotts is this a UXP known issue?

Hmm… It looks like onChange isn’t being fired correctly. Try using onClick for now – that seems to work as expected (both the label and state indicator work).

I’ll pass this on internally.

1 Like