Hi all,
Just starting to explore ScriptRunner.
I got a radio button custom field "Resoved on first call" (id=10219) with default value of "No". And another custom field "Resolution comment" (id=10215).
I want to hide the Resolution comment field if the Resolved on first call is = "No".
My script looks like this....
The script has red undeline on customfield_10219 and .name.
If I hover my mouse on customfield_10219, the message is... "Argument of type '"customfield_10219"' is not assignable to parameter of..."
And hover on .name, the message is... "Property 'name' does not exist on type 'string..."
What am I doing wrong? Please help.
Hi,
You need to do something like this:
const checkbox = getFieldById("customfield_02133").getValue();
//will return this:
[{"id":"10021","value":"A"},{"id":"10022","value":"B"}]
https://docs.adaptavist.com/sr4jc/latest/features/behaviours/behaviours-api
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.