Hi all,
I've been enjoying playing around with the new Life Fields Cloud addon by Appfire.
However, I am running into of a roadblock when using the getContext() function.
I was hoping to use it to do some additional evaluation on a field change vs a page load, but all I seem to get back from the function is an empty object:
The script I'm using to try and figure it out is pretty simple:
const c = getContext();
logger.debug(c);
Turns out using "await" was necessary!
const c = await getContext();
logger.debug(c);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.