Rob
01/16/2025, 12:44 PMCeligo AI
01/16/2025, 12:44 PMAI generated answer (using internal Slack threads):To hide a specific column in a sublist using SuiteScript, you can use the
isDisplay
property of the column object. Here's a general example:
javascript
function pageInit(context) {
var rec = context.currentRecord;
var sublistObj = rec.getSublist({
sublistId: 'your_sublist_id'
});
var columnToHide = sublistObj.getColumn({
fieldId: 'your_field_id'
});
//set
columnToHide.isDisplay = false;
}
In this example, replace 'your_sublist_id'
with the ID of your sublist and 'your_field_id'
with the ID of the field you want to hide.
If you want to hide multiple columns, you can use a similar approach but with a loop:
javascript
// List of column IDs to hide
var columnsToHide = ['field1', 'field2', 'field3']; // Add more column IDs as needed
columnsToHide.forEach(function(columnId) {
var columnToHide = sublistObj.getColumn({
fieldId: columnId
});
//set
columnToHide.isDisplay = false;
});
In this example, replace 'field1'
, 'field2'
, and 'field3'
with the IDs of the fields you want to hide.
******
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
01/16/2025, 12:44 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.858278811
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.844582736
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.837227225
Celigo AI
01/16/2025, 12:44 PM