Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,609
Community Members
 
Community Events
184
Community Groups

How do I gray out the second level of cascading select field?

Hi,

I have a cascading select list, in some of the first level select- there are no second level select, so when the user chooses those ones, the second option he gets is to choose None. This is confusing to the users.

Is there an option to gray out the second level if we didn't insert any options to choose from, instead of presenting a None value.

I want to use a behavior script, but not sure how to.

Thanks,

Dana 

1 answer

0 votes
Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 25, 2019

Hi @dana m 

Try this piece of code.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.issue.fields.config.FieldConfig
import com.atlassian.jira.issue.customfields.option.Options


def parentField = getFieldById("customfield_10501")
def parentFieldValue = parentField.getValue()
def childField = getFieldById("customfield_10501:1")
def childFieldValue = childField.getValue()
def customField = getCustomFieldManager().getCustomFieldObjectsByName("CUSTOM FIELD NAME")
FieldConfig config = customField[0].getRelevantConfig(getIssueContext())
def rootOptions_ = ComponentAccessor.getOptionsManager().getOptions(config)
def childOptions_ = [:]

rootOptions_.rootOptions.each { it ->
childOptions_[it] = it.childOptions
}

def nullcheck = []
nullcheck = childOptions_.findAll { it.value.size() == 0 }.keySet()
def readOnlyYes = nullcheck.findAll { it ==~ parentFieldValue[0].toString() }.size()

if( !parentFieldValue.isEmpty() && readOnlyYes >= 1) {
childField.setReadOnly(true)
} else {
childField.setReadOnly(false)
}
  1. Create a behaviour on the field where you want this to be done.
  2. Add the following code in the server-side script.
  3. Make sure you change the customfield_id at 2 places and CUSTOM FIELD NAME

Let me know if it works.

Ravi

Hi Ravi,

Thanks for your reply and the example script.

Unfortunately it didn't work for me, I mapped the field and project and changed the Customer field ID and name.

Still the second level shows the None regularly.

Any suggestions.

Thanks,

Dana 

Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 26, 2019

The childField should be like this.

def childField = getFieldById("customfield_10501:1")

In the browser do inspect element and confirm the id along with the number after the colon.

Ravi 

I tried this template before but it didn't work,

"customfield_10501:1"

 checking now in the inspect element , i saw another option but tried it and still it's not working, and the None appears in the second level.

Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 26, 2019

Try writing to log by adding log.debug(parentFieldValue) to check whether the field is captured or not.

This script works for me as described by @Ravi Sagar _Sparxsys_ , forcing an edit to the cascading select field to open the edit screen (instead of inline) and locking the second dropdown if the only option is "none"/null.  It also works in the create screen.

I'm trying to do something somewhat different, but using this as a springboard.  I wanted to report to others who find this post that it works as described, since it was not marked as accepted. 

It may even be possible to allow inline editing with this script, but I have not tested it and don't intend to.

Thanks!

hello @Ravi Sagar _Sparxsys_ ,

 

Getting the error while using the script that you suggested above. Please assist

capt 2.JPGCapt1.JPG

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events