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!
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
Get Sublist Data in Suitelet
Today I wanted to create first 2.0 Suitelet, but I couldn't find any simple and easy way to get sublist data from sublist which was created as a part of Suitelet form. Of course you have context.request.parameters.sublistdata where all the data are stored after page submit, but you need to manually split it. I thought that maybe I'm missing something, but actually this is the part of an example from Netsuite help:
var delimiter = /\u0001/;
var textField = context.request.parameters.textfield;
var dateField = context.request.parameters.datefield;
var currencyField = context.request.parameters.currencyfield;
var selectField = context.request.parameters.selectfield;
0