Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Capture Radio Button value in Online HTML Form
Hello All,
I have created an Online HTML Form for a Custom Record Type which is for a survery. I am asking questions that can have an answer of either 1 - 10. The best way to do this is to use Radio Buttons within the html form. This is my radio button code
1<input type="radio" name="bdm" value="bdm_1" /> 2<input type="radio" name="bdm" value="bdm_2" /> 3<input type="radio" name="bdm" value="bdm_3" /> 4<input type="radio" name="bdm" value="bdm_4" /> 5<input type="radio" name="bdm" value="bdm_5" /> 6<input type="radio" name="bdm" value="bdm_6" /> 7<input type="radio" name="bdm" value="bdm_7" /> 8<input type="radio" name="bdm" value="bdm_8" /> 9<input type="radio" name="bdm" value="bdm_9" /> 10<input type="radio" name="bdm" value="bdm_10" />
0