https://netsuiteprofessionals.com logo
Title
e

Edward Barrier III

10/28/2021, 6:31 PM
Has anyone went through the process of making radio buttons in netsuite? If so, what's a good way of creating them?
p

pingu

10/28/2021, 7:21 PM
There is no option in Suite Customization, but we can create using N/ui/ServerWidget module in suite script.
form.addField({
    id: 'id'
    name: 'rb',
    type: serverWidget.FieldType.RADIO,
    label: 'rb',
    source: 'rb'});
k

KevinJ of Kansas

10/28/2021, 7:28 PM
I'm pretty sure you have to do something on top of the field display in order to make that radio button useful.