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

Behaviour to exclude None field value from custom select list doesn't work for inline editing

Kamran Ansari August 5, 2021

We use Jira Data Center with ScriptRunner, and have a need to remove the “None” option from one of our custom select list fields.

I have already looked at a few discussion threads, and based on them, here are the steps I took:

  1. Added a new value (in Jira field configuration) called Undefined and set it as the default to use instead of None
  2. Created a new behaviour, and:
    • Added the following code to the initializer
    • Added the same code below to the server side script
import com.atlassian.jira.component.ComponentAccessor
import org.apache.log4j.Level
import org.apache.log4j.Logger

// Grab appropriate managers
def cfManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()

// Grab form and custom field values
def selectCF = cfManager.getCustomFieldObject("customfield_11616")

def selectField = getFieldById ("customfield_11616")

// Must grab the relevant config given the current issue context and the custom field
def config = selectCF.getRelevantConfig(getIssueContext())

// Given config, grab a map of the possible options for the select custom field
def options = optionsManager.getOptions(config)
selectField.setFieldOptions(options.collectEntries{[(it.optionId): it.value]})

This seems to work for Create Issue and Edit Issue screens and the None option is indeed removed from the list of choices. However, when I try to do inline edit on the field, the None option is still there.

 

I'm hoping someone can chime in and tell me what I am doing wrong here.

I'd greatly appreciate any help I can find.

Many thanks,

Kamran 

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 5, 2021

The way behaviours are implemented, they don't work for inline edits.

Normally, when you apply a behaviour for a field, scriptrunner disables the inline edit and any attempt at editing in-line will open up the edit screen.

But maybe this automatic disabling of inline edit only works if you have a setReadOnly or setRequired.

You could try to manually disable the inline edit by adding:

selectField.allowInlineEdit(false)
Kamran Ansari August 5, 2021

Thank you so much for your reply!

It's disappointing to know that behaviours don't work with inline edits :/

I would be satisfied with the the edit screen opening up when the user attempted inline editing, and updated my code with what you suggested. Unfortunately, even this behaviour (no pun intended) is inconsistent at best. In my case, the inline edit works (without the edit screen opening up) only 2 out of 5 times.

If you have any other suggestions, I'd love to hear them. Regardless, your help is much appreciated!

Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 5, 2021

All behaviour functionality relies heavily on client-side javascript functionality. So there are some inherent limitations that this comes with. 

Including having possible delays before the client-side applies the DOM change associated with the desired behaviour (which first has to be fetched from the server-side script).

So if your browser or PC is busy or the user very fast, the DOM changes may not have been applied yet.

Can you give your screen a 3/5 second delay to see if you still see inconsistent behaviour? I can't think of what else would cause the intermittent results.

The other option is to make this field required at the field configuration level. This way, while "none" will be visible in the list, user won't be able to select it without tripping the required field validation.

Kamran Ansari August 12, 2021

Thank you for all your help thus far!

You were right that the DOM changes were slow to apply. However, in the end, we decided to can the implementation altogether because I was still able to edit the field inline by getting to it through the global shortcut ("." key or "gg"), and that wasn't acceptable for what we were trying to accomplish.

I appreciate your help!

TAGS
AUG Leaders

Atlassian Community Events