Perry Auld
05/14/2026, 9:13 PMCeligo AI
05/14/2026, 9:13 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems that you can insert a custom tab in front of the Files tab on a custom record by using the
insertTab method in a User Event script's beforeLoad function. Here is a sample code snippet:
javascript
function beforeLoad(context) {
let form = context.form;
let customTab = form.getTab({
id: 'customTab'
});
form.insertTab({
tab: customTab,
nexttab: 'files'
});
}
In this code, customTab is the ID of your custom tab. This code will insert your custom tab in front of the Files tab.
However, please note that you cannot rearrange native tabs based on record mode. Also, you cannot make a custom tab display to the left of the 'Reports' on the 'Accounting Center' without creating a custom center, which is quite a bit of work.
******
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
05/14/2026, 9:13 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.809387267
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.804077208
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.803100646
Celigo AI
05/14/2026, 9:13 PM