How can I remove the comment box for one specific transition? The transition is a multi-line field and I don't want users to mistakenly put info in the comments or feel that they are obliged to.
Thanks
Comment boxes appear in all global transitions.
You can put some code in field configurations and hide the comment field though.
You can do this by going to the field configuraiton of your project and add that script in any other field which does appear on the transition besides the comment box.
For e.g. You have a transition for "In Progress" to "Resovled"
And you have 2 fields on this transitions, 'abc' field and a comment box.
So you'd need to put the following script in the abc field of your project's field config.
<script type="text/javascript">
if(AJS.$('#issue-workflow-transition-submit').val() =='Transition Name'){
AJS.$('div.comment-input').css('display', 'none');
}
</script>
Where exactly should i place this line? My transition is called "Solution not Sufficient" and has only one field which is "Explanation".
I added the lines of code to the custom field explantation to no avail.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your project would be using some Field configuration.
Go to Project's Administration, and see what that is.
See 1.png

Search for Comment in the fields. And select Edit to add the script over there.
See 2.PNG
<script type="text/javascript">
if(AJS.$('#issue-workflow-transition-submit').val() =='Solution not Sufficient'){
AJS.$('div.comment-input').css('display', 'none');
}
</script>
Note that the above script will target the transition Solution not Sufficient.
So any time you are transitioning to Solution not Sufficient. the script will run.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I added the code to "explanation" and "comment" fields separately but all that happens was the code appearing in the description.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you put the closing script tag?
If that doesnt work, try just enclosing in simple script tag,
<script>
//code
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same issue here - tags are closed - all it does is appear on the description.
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.