Scriptrunner Behaviours to clear check boxes field

Conor McGmail October 10, 2016

Hi I am trying to clear a number of checkboxes (1 field with 3 checkboxes) and my code below will clear the field but it will not allow the edit to complete. It works if I just set the field to hidden without trying to clear the values. So obviously it's not quite right.

import com.atlassian.jira.component.ComponentAccessor
import static com.atlassian.jira.issue.IssueFieldConstants.*
    
def team = getFieldById(getFieldChanged())
def psc = getFieldByName("PSC Progress")
    
def constantsManager = ComponentAccessor.getConstantsManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()
 
if (team.getValue() =~ "PSC"){ 
   psc.setHidden(false)
   psc.setReadOnly(false)
}
else{
    def customField = customFieldManager.getCustomFieldObject(psc.getFieldId())
    def config = customField.getRelevantConfig(getIssueContext())
    def options = optionsManager.getOptions(config)
    def optionsToSelect = options.findAll { it.value in ["-1"] } 
   	psc.setFormValue(optionsToSelect*.optionId)    
    //psc.setHidden(true)
    //psc.setReadOnly(true)
}

 

Thanks in advance,

Conor

 

2 answers

1 accepted

0 votes
Answer accepted
Thanos Batagiannis _Adaptavist_
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.
October 10, 2016

Hi Conor,

Did you try just to set value to null ? (if you want to unselect them)

getFieldByName("Checkboxes").setFormValue(null)

regards, Thanos

Conor McGmail October 10, 2016

Hi Thanos,

I tried that, and same result - it will clear the field values but it won't allow the edit to complete.

 

Thanos Batagiannis _Adaptavist_
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.
October 10, 2016

Sorry Conor I think I miss something. So the checkboxes getting clear and then you say 

but it will not allow the edit to complete

what exactly you expect to happen ? An example will be great...

cheers 

Conor McGmail October 11, 2016

Slight variation to get it working. Was as simple as -

 

getFieldByName("Checkboxes").setFormValue("")

0 votes
Shradha Singh December 17, 2018

Hi,

Please suggest what shall be the code to check all the checkboxes.

 

Regards
Shradha

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events