It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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?
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>
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAtlas Camp is our developer event which will take place in Barcelona, Spain from the 6th -7th of September . This is a great opportunity to meet other developers and get n...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.