google apps script - How to know which Radio Button is selected? -
I have 3 radio buttons in the same radio group on my radio. They are,
Var rbutton1 = app.createRadioButton ('dist', '5 miles'); Var rbutton2 = app.createRadioButton ('dist', '10 miles'); Var rbutton3 = app.createRadioButton ('dist', '25 miles'); Event handler function, variable, e.parameter.dist returns the right or wrong bus rbutton3 (last radio button) based on whether the check is done or not. Is there any way to decide whether the radio button is actually selected? After the
The same way the radio button groups work like this (as desired by the design) In the
Comments
Post a Comment