Hi all,
My question is about displaying check box options in multiple columns to better able to fit longer list on the request form within Jira Service Management.
We had previous been able to do this by placing the following Java script into the custom field description.
<script language="javascript">
AJS.$(document).ready(function(){
Array.from(document.body.getElementsByClassName("checkbox")).forEach(function (cbox) {
if (cbox.getAttribute('name')=='customfield_10201') {
cbox.parentNode.style.cssFloat='left';
cbox.parentNode.style.width='25%';
}
});
});
</script>
After upgrading from Jira Service Desk 4.5.0 and Jira Core 8.5.0 to Jira Service Management 4.20.1 and Jira Core 8.20.1, the Java script does not appear to work.
Any pointers on how to change the java script or achieve the same results a different way would be greatly appreciated.
I found the answer to my own question. I had to go into settings and turn the following setting back on. It must have been turned off by the upgrade.
I found the answer to my own question. I had to go into settings and turn the following setting back on. It must have been turned off by the upgrade.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.