In my User Event script I am adding a field to the form and I would like to add it to the Primary Information field group. What is the internal id of the group? I've tried primaryinformation but that's not correct. I can't see a method of iterating field groups and fields in the API to figure it out.
Does anyone know?
I am using SS2.
var field = scriptContext.form.addField({
id: 'textfield',
type: serverWidget.FieldType.TEXT,
label: 'Text',
container: '**primaryinformation**' <--
});