I am not a JavaScript expert. Any help is appreciated.
Is there a way to see the fields used in the form on the developer console? This would be extremely helpful when troubleshooting or looking at hidden values. Thanks.
I am not a JavaScript expert. Any help is appreciated.
Is there a way to see the fields used in the form on the developer console? This would be extremely helpful when troubleshooting or looking at hidden values. Thanks.
If you want to check out all of the current field values of the user, you can get their field values via feathery.getFieldValues()
and print it out to console with console.log()
. So it would look like console.log(feathery.getFieldValues())