We have too keep scrolling to find the option, can we keep the options in the same line.
This link may be the answer you need.
Solved: SOLVED: Checkboxes on multiple columns in Jira (atlassian.com)
<script language="javascript">
AJS.$(document).ready(function(){
Array.from(document.body.getElementsByClassName("checkbox")).forEach(function (cbox) {
if (cbox.getAttribute('name')=='customfield_10405') {
cbox.parentNode.style.cssFloat='left';
cbox.parentNode.style.width='20%';
}
});
});
</script>
added to the customfield description.
I was able to accomplish this using Scriptrunner, put the CSS in the field description to change the layout.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's cool, How to do it?
update:
I got it.
Solved: SOLVED: Checkboxes on multiple columns in Jira (atlassian.com)
<script language="javascript">
AJS.$(document).ready(function(){
Array.from(document.body.getElementsByClassName("checkbox")).forEach(function (cbox) {
if (cbox.getAttribute('name')=='customfield_10405') {
cbox.parentNode.style.cssFloat='left';
cbox.parentNode.style.width='20%';
}
});
});
</script>
added to the customfield description.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @venkatesh_rajput ,
unfortunately, for my knowledge, you can't configure that. Because you are in a server instance, you could try to develop a specific javascript to put in place that behaviour.
https://confluence.atlassian.com/jirakb/how-to-customize-jira-with-javascript-1178874962.html
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What imports can I use to customize the field layout, I am unable to set the field layout.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.