Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Defaults for Multiselect fields in Suitelets
I an working with a suitelet and have a multiselect field which is configured to use an existing record type to build the list, i.e.
[INDENT]myField = form.addField('multiselectfield', 'multiselect', 'Select one or more options', myRecordType);[/INDENT]
This shows the list fine and the user can select multiple values. When I retrieve the field from the request parameters (when the user submits the page), I get back a single string with the selected values separated by ' '.
So, I can show the list, use the list, retrieve the values - but if I then redisplay the page, how do I preserve the current selections? For other field types, I just need to set the field 'default value' to the value read from the request parameters, but for a multiselect field this does not seem to work.