Eric Schultz
02/28/2025, 5:36 AMCeligo AI
02/28/2025, 5:36 AMAI generated answer (using internal Slack threads):In SuiteScript, when creating a form sublist, you can create a static footer for column totals that is fixed and won't be part of a column sort by adding an extra line to the sublist to sum up the results for the search. This can be done after the for loop that populates the sublist is finished. However, please note that this is more of a workaround than a built-in feature, and if you sort a column, the totals line will sort along with the results as well. Here's a simplified example of how you might do this:
javascript
var sublist = form.addSublist({
id: 'customsublist',
type: serverWidget.SublistType.LIST,
label: 'Custom Sublist'
});
// Add your columns...
// Populate your sublist...
for (var i = 0; i < results.length; i++) {
sublist.setSublistValue({
id: 'customfield',
line: i,
value: results[i].getValue('customfield')
});
// Add other fields...
}
// Add totals line
sublist.setSublistValue({
id: 'customfield',
line: results.length,
value: 'Total: ' + total
});
Remember, this is a workaround and may not work perfectly in all scenarios. For example, if you sort a column, the totals line will sort along with the results.
******
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
02/28/2025, 5:36 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.804167092
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.799256265
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.794876099
Celigo AI
02/28/2025, 5:36 AM