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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
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