Aaron McCausland
03/19/2025, 5:16 PMCeligo AI
03/19/2025, 5:16 PMAI generated answer (using internal Slack threads):To populate a SELECT type field with all the Custom Forms that can be selected for a given transaction type, you should use the internal id of the
List/Record
field that you get while creating a custom field in the UI.
Here is an example of how you can do this:
javascript
var customFormSelect = form.addField({
id: 'custpage_formid',
type: serverWidget.FieldType.SELECT,
label: 'Custom Form',
source: 'customform' // This is the internal id for Custom Forms
});
In this example, 'customform' is the internal id for Custom Forms in NetSuite. This will populate the SELECT field with all the Custom Forms that can be selected for a given transaction type.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
03/19/2025, 5:17 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.849992573
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.837823272
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.831542611
Celigo AI
03/19/2025, 5:17 PMCeligo AI
03/19/2025, 5:18 PMAaron McCausland
03/19/2025, 5:18 PM