I noticed that when a user clicks on a “label” for a radio button instead of the options then the first option is selected.
E.g.
{view:“radio”, label:“Branch”, value:1, options:[
{ id:1, value:“Master” }, //the initially selected item
{ id:2, value:“Branch” }
]}
In the above example if user clicks on the label “Branch” then the first option - “Master” is selected.
This is undesirable in situations where user accidentally clicks on the label and does not notice that the first option is selected.
Please let me know if there is any way to get around this issue?