Melissa
09/27/2024, 8:22 PMrustyshackles
09/27/2024, 8:39 PMMelissa
09/27/2024, 8:40 PMjen
09/27/2024, 8:52 PMjen
09/27/2024, 8:52 PMMelissa
09/27/2024, 8:52 PMvar selectField = form.addField({
id : 'custpage_selectfield',
type : serverWidget.FieldType.SELECT,
label : 'Select'
});
selectField.addSelectOption({
value : '',
text : ''
});
selectField.addSelectOption({
value : 'a',
text : 'Albert'
});
that doesn't do what I am looking for. I could load list of options from a saved search and set these, but it's not really what we want . I was hoping for that search and list functionalityMelissa
09/27/2024, 8:54 PMFred Pope
10/01/2024, 6:11 PM