You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I’d like the “none” option removed from the second dropdown(child list) in the cascading field.
Also, I’d like to set a default value for the child list.
Like, if i choose option A in parent list, by default option B should be set in the create form and also user should be able to change the child option as well as parent option.
I am using below behaviour script which sets the field value in the create issue form. But when i am trying to change the value it is again setting the value from script and does not accepts the one i choose.
"
import com.atlassian.jira.component.ComponentAccessor
def optionsManager = ComponentAccessor.getOptionsManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def emailtype = "Email Types"
def email = getFieldByName(emailtype)
def customField = customFieldManager.getCustomFieldObjectByName(emailtype)
def fieldConfig = customField.getRelevantConfig(getIssueContext())
log.debug("email" + email.getValue())
def options = optionsManager.getOptions(fieldConfig)
def parentOption = options.find {it.value == "Test Store"}
def childOption = parentOption?.childOptions?.find {it.value == "Promotional"}
if (email.getValue() =~ parentOption)
{
email.setFormValue([parentOption.optionId, childOption.optionId])
}"
If i choose "Test Store" in parent list it automatically sets the child to "Promotional". But i have other options in child and when i choose the other options, it is again setting to "Promotional". The same is happening for parent list.
I need Promotional to be default if i select Test store in the parent list initially and if i change the options it should change and not default to the one in the script.
Kindly let me know how to solve this. Also let me know how to remove none from the child list.
Thank You,
Krithica
Hi ,
for none option , try to customize by deleting the common.words.none in this file template
JIRA_HOME\atlassian-jira\WEB-INF\classes\templates\plugins\fields\edit\edit-cascadingselect.vm
For the default value ,i think you could just order the options and put the default value in the first.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.