Hi,
Once the Fix Version field selected with particular value then automatically "Comment" field should be mandatory.
I just wrote the behaviours script but it doesn't work.
log.warn("--- Start behaviour ------------------------------")
def fixVersionsField = getFieldById("fixVersions")
log.warn("Field: " + fixVersionsField)
def fixversion = fixVersionsField.getValue()
log.warn("FixVersions: " + fixversion)
def commentField = getFieldById("comment")
log.warn("comment field: " + commentField)
if (fixversion == "a") {
getFieldById("comment").setRequired(true)
}
else {
getFieldById("comment").setRequired(false)
}
log.warn("--------------------------- End behaviour ---------")
===================
Kindly let me know what mistake is that.
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.