I just want to ask whether there is a way to configure the details view to open the Reassign Issue dialog instead of the default action which simply reassigns the task without any comments.
Background. Often users reassign the task and add their comment afterwards. In that case the assignee doesn't know why he has got the issue until the issue is commented.
Hello,
Could you give more details what is the Reassign issue dialog. Screenshot would be great!
When you fully open an issue you can press the button Assign which opens dialog to enter the assignee as well as a comment why the issue is assigned.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok. I got it. How do you want to redesign it? Do you want to make the comment field required? If so, it is not possible.
You could do it another way. You could hide the assign button and create a global transition called Assign. Then you could make the comment required using an add-on.
Here is KB, on how to do it:
You could also do it with other add-ons.
For example the Power Scripts add-on:
You could create a validator like this:
string errorMsg =
"You must enter a comment!"
;
if
(!hasInput(
"comment"
)) {
return
false
,
"comment"
, errorMsg;
}
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.