here we go...
Is it possible in javascript to iterate the options an Account (customer) lookup?
something like:
Ugh! i am having a brain fade.
here we go...
Is it possible in javascript to iterate the options an Account (customer) lookup?
something like:
Ugh! i am having a brain fade.
// Get Array of selected accesses Option Values
var selectedOptionValues = formContext.getAttribute("access_multi_select").getValue();
//Get Array of selected accesses Option Texts
var selectedOptionText = formContext.getAttribute("access_multi_select").getText();
// for each access,
for (let i = 0; i < selectedOptionValues.length; i++) {
// do work here
}
André Arnaud de Cal... 291,431 Super User 2024 Season 2
Martin Dráb 230,503 Most Valuable Professional
nmaenpaa 101,156