Mar 24, 2017 09:35 AM
How could I filter via JavaScript API depending on linked table? What is the criteria if there are more than one table linked?
I tried "{Column} = '" + record.get('Col') + "'
but then I get only the results with just this reference, not the records having addition refs.
Mar 26, 2017 11:40 PM
I got it now. This works for me:
"FIND( '" + record.get('Col') + "', ARRAYJOIN({Column}, ';'))"
Apr 29, 2019 07:00 AM
Can you make it work using the REST API ? I tried to do the same, but I never get any result…