Hi Team,
I am trying to create a script that shows or hides a single line text field called "Reason for the Due Date" based on the value of a date field called "Due Date". Although the script is working, the "Reason for the Due Date" field is visible when the ticket is initially created, even when the "Due Date" field is blank. Ideally, the "Reason for the Due Date" field should only be visible when a value is entered in the "Due Date" field and should disappear when the "Due Date" field is blank.
On Create :
import com.onresolve.jira.groovy.user.FieldBehaviours
import org.apache.log4j.Logger
import org.apache.log4j.Level
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours
def log = Logger.getLogger(getClass())
// Set log level
log.setLevel(Level.DEBUG)
def dueField = getFieldByName("Due Date")
def reasonField = getFieldByName('Reason for the Due Date')
def dateFieldValue = dueField.getValue() as Date
if (dateFieldValue == null)
{
reasonField.setHidden(true)
reasonField.setRequired(false)
}
else
{
reasonField.setHidden(false)
reasonField.setRequired(true)
}
Hi @Lakshmi CH
It appears that your code is faulty.
Also, for your code to work, you must use the Server-Side Behaviour for the Date Field.
Below is a sample working code for your reference:-
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
@BaseScript FieldBehaviours behaviours
def date1 = getFieldById(fieldChanged)
def date1Value = date1.value.toString()
def sampleText = getFieldByName('Sample Text')
sampleText.required = false
sampleText.hidden = true
if (date1Value) {
sampleText.hidden = false
sampleText.required = true
}
Please note that the sample working code above is not 100% exact to your environment. Hence, you will need to make the required modifications.
Below is a screenshot of the Behaviour configuration for your reference:-
Below are a couple of test screens for your reference:-
1. The Date field is empty by default when the Create screen first appears. Hence, the Text Field is set to not required and is hidden.
2. When the value is set for the Date field, as expected, the Text Field is now visible and is set to required, as shown in the screenshot below. If the Date field is cleared, the Text Field will not be set to required and hidden as expected.
I hope this helps to answer your question. :-)
Thank you and Kind regards,
Ram
Thank you Ram @Ram Kumar Aravindakshan _Adaptavist_ . Its working expected,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Lakshmi CH
Glad to hear the solution worked for you. :-)
Please accept the answer.
Thank you and Kind regards,
Ram
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Ram Kumar Aravindakshan _Adaptavist_
I am trying to introduce similar automation to make sure the Due date Change Reason (multiline text) is mandatory when the Due Date field (date type) changes its value.
When the field changes from BLANK to Value no need to populate the field.
am not a hardcore developer, took the reference of your code. log says no failure in executions.this is at the issue creation stage
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.