How are segmented control components reset? Setting the value = null or '' effectively clears the selection, but whatever value was previously set is not 'selectable' again until an alternate value is selected.
Here's a pen reproducing the issue - https://codepen.io/derekwmiller/pen/bNdxKEm
Select a value -> click the reset icon / button -> try to select the same value -> cannot select it
Solved! Go to Solution.
@MillerDerek As Kelly mentioned in the linked Community thread this is the intent of the component, where one value is always checked. You can leverage native form capabilities to reset the component, and other components within a form, using the reset method, like so: https://codepen.io/geospatialem/pen/LEVgRZK
@MillerDerek As Kelly mentioned in the linked Community thread this is the intent of the component, where one value is always checked. You can leverage native form capabilities to reset the component, and other components within a form, using the reset method, like so: https://codepen.io/geospatialem/pen/LEVgRZK
Got it. Thank you @KittyHurley