Multi checkbox options aren't selected if there is a script on the field

Christian Schulz August 21, 2013

Hello,

I am trying the behaviours plugin (0.5.3) in Jira 5.2.4.1 and noticed that it doesn't work really good with multi checkbox.
I created a custom field as multi checkbox and added a new behavior on it. If one option is selected a select field is displayed.
I used a small groovy script for it:

FormField cField = getFieldById("customfield_10397");
FormField sField = getFieldById("customfield_10396");

cField.setHelpText(cField.getFormValue())

if (cField.getFormValue() == "10226") {
 sField.setHidden(false);
} else {
 sValue = sField.getFormValue();
 sField.setFormValue("-1");
 sField.setHidden(true);
}

This works good so far. But if I want to edit the issue the selected options aren't selected.

Is it a bug or do I use the API in a wrong way?

1 answer

0 votes
RambanamP
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.
August 21, 2013

i don't have knowlde on behaviour plugin,

but you can doit by using javascript, if you want you can try with this code by adding in field description of select list in field configuration

<script type="text/javascript">  
jQuery(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
		callFunction();
	});
		callFunction();
function callFunction(){
		showorhidefields();
	//assume you have two check boxes 
	$("#customfield_10397-1,#customfield_10397-2).click(function() {
			showorhidefields(); 
		});
}

function showorhidefields(){
var checkedCheckboxes = $("input:checkbox[name=customfield_10397]:checked");
		//select field
		$("#customfield_10396").closest('div.field-group').show();
checkedCheckboxes.each(function () {
	var selVal=$(this).val(); 
		if(selVal != '10226'){//id of Yes check box	
			$("#customfield_10396").val('');
			$("#customfield_10396").closest('div.field-group').hide();
		}
});

}
});
</script>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events