Hi Jira Core Support,
I am the Administrator for Jira Core.
We invite our 1st new team member by sending out invite to their email(Gmail).
They registered as new user via email.
Then when they try login into our Jira Core(Free) URL, there was a technical error, and could not log in, the message ask us to talk to Support.
We exit out of Chrome, and attempt to login for a few times, basically could not login.
Please assist.
Thanks.
No, it evaluates it on the edited values of all fields.
You don't need to specify a field, if you leave the field blank the error message will go at the top, but selecting the field only determines where the error message if any is shown, nothing else.
I think the problem is the fields are probably select lists or radio buttons, in which case you need:
cfValues['Reapply Needed?']?.value
same for the other one.
Jamie, thanks very much for your response, It got me straight to the right answer. For anyone that has similar script issues, here is some of what I have learnt:
If you have a select list and the default value is 'None' then this in script terms is actually null.
e.g: cfValues['selectlist1']?.value != null
If you have a free text field then an empty field is null
As Jamie said above, to check the value of a select field then
cfValues['select list1']?.value == 'blah'
is what you need
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's all true, but your first example can be replaced with the following for simplicity (groovy truth):
cfValues['selectlist1']?.value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
please use the right tags (I did it) or you won't get answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.