KnotKnick
10/19/2020, 7:21 PMsource
the list in a field added in the sublist, using a saved search that pulls the values?battk
10/19/2020, 7:25 PMbattk
10/19/2020, 7:25 PMKnotKnick
10/19/2020, 7:31 PMvar form = serverWidget.createForm({
title: 'Results'
});
var sublist = form.addSublist({
id: 'sublist',
type: serverWidget.SublistType.INLINEEDITOR,
label: 'Item List'
});
var item = sublist.addField({
id: 'item',
label: 'Item',
type: serverWidget.FieldType.SELECT
});
battk
10/19/2020, 7:36 PMbattk
10/19/2020, 7:36 PMbattk
10/19/2020, 7:37 PMbattk
10/19/2020, 7:38 PMKnotKnick
10/19/2020, 7:42 PMaddSelectOption
works in my case 🙂 thank you!