The "value" field in the radiobuttons is disabled and can not be assigned a value, so it is not possible that the user can assign a custom value when the radiobutton is selected, as you can do with the checkboxes for example.
Currently when you get the value of a group of radiobuttons it simply adds "0", "1", "2", etc. to the name of the radiobutton, so it is very complicated to know which radiobutton has been selected and does not allow the user to assign a custom value.
For example:
https://stackblitz.com/edit/djrmdn?file=index.html,index.js
Add three radiobuttons with the same name "radios", as in the following image.
If you click on the button "Get value radiobuttons", the console displays the value obtained: "radios0", "radios1" or "radios2".
Is there the possibility of being able to assign a custom value to the "value" field of the radiobutton and when you get the value of that group of radiobuttons get the custom value of the selected radiobutton? it would be very useful.
Thank you very much!