jen
03/03/2025, 5:50 PMsearch.lookupFields()
to return the selected values for a few multiselects which are custom Entity Fields. I’m noticing that some of these multiselects return as an object with two properties, text
and value
where each is a comma-separated list of the expected values, and some of the other multiselects are returning as an object with one property per selected value, indexed 0, 1, 2, 3. What’s going on here?Anthony OConnor
03/03/2025, 5:53 PMcustentity_
?
not that the record type of the List/Record is set to Entity?Anthony OConnor
03/03/2025, 5:55 PMjen
03/03/2025, 6:02 PMjen
03/03/2025, 6:02 PMjen
03/03/2025, 6:03 PMjen
03/03/2025, 6:03 PMjen
03/03/2025, 6:04 PMAnthony OConnor
03/03/2025, 6:41 PMjen
03/03/2025, 6:43 PMjen
03/03/2025, 6:43 PMjen
03/03/2025, 6:44 PMAnthony OConnor
03/03/2025, 6:45 PMjen
03/03/2025, 6:45 PMAnthony OConnor
03/03/2025, 6:47 PMjen
03/03/2025, 6:48 PMAnthony OConnor
03/03/2025, 6:49 PMjen
03/03/2025, 6:49 PMAnthony OConnor
03/03/2025, 6:50 PMjen
03/03/2025, 6:50 PMjen
03/03/2025, 6:50 PMAnthony OConnor
03/03/2025, 6:51 PMAnthony OConnor
03/03/2025, 6:53 PMjen
03/03/2025, 6:53 PMAnthony OConnor
03/03/2025, 6:54 PMjen
03/03/2025, 6:54 PMAnthony OConnor
03/03/2025, 6:55 PMAnthony OConnor
03/03/2025, 6:57 PMjen
03/03/2025, 6:57 PM{
text: "thing, nextthing, thirdthing"
value: "4, 17, 21"
}
and whatever2 comes back as
{
0: {value: '3', text: 'Stuff'},
1: {value: '6', text: 'More Stuff'},
2: {value: '7', text: 'Even More Stuff'}
}
Anthony OConnor
03/03/2025, 7:01 PM{
[
{value: '2', text: 'Thing'},
{value: '5', text: 'Other Thing'}
]
}
and
{
[2, 5]
}