...
The value of the field in the transition screen.
Examples
Example 1 - checking whether a certain custom field has
...
a given value
Code Block |
---|
return getInput("customfield_12003") == "abc"; |
Returns Checks if the value set in the transition screen for customfield_12003 is "abc".
Example 2 -
...
getting the comment a ticket has
...
on a transition screen
Code Block |
---|
getInput("comment"); |
...