Milcho Dimkov
09/05/2024, 9:32 AMCeligo AI
09/05/2024, 9:32 AMAI generated answer (using internal Slack threads):In a Suitelet, to make some of the fields appear in a second column (not on a sublist), you can use the layout types
STARTROWMIDROWENDROWjavascript
var field1 = form.addField({
    id: 'custpage_field1',
    type: serverWidget.FieldType.TEXT,
    label: 'Field 1',
    container: 'group'
});
field1.layoutType = serverWidget.FieldLayoutType.STARTROW;
var field2 = form.addField({
    id: 'custpage_field2',
    type: serverWidget.FieldType.TEXT,
    label: 'Field 2',
    container: 'group'
});
field2.layoutType = serverWidget.FieldLayoutType.MIDROW;Field 1Field 2Celigo AI
09/05/2024, 9:33 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.842808366
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834266365
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.829475522
Celigo AI
09/05/2024, 9:33 AM