Hello,
I am using js to display or hide buttons on a form.
One snippet of the query is:
if (attributes[i].getIsDirty()
&& attributes[i].getName() != "decision" && attributes[i].getName() != "decisiondate" ) {<do stuff>}
The condition is working correctly on the normal date field, however is not working on the 'decision' field which is a lookup field.
Do I need different syntax to get this to evaluate a lookup field correctly?
Thanks in advance.