Hi,
We have a trial version of JIRA ServiceDesk 2.3.0 and we are trying to set up a workflow. We have steg (transistion) which we call "Assign to 2nd Line". This step opens a screen with the "respond to customer" and "internal comment" tabs. How can this screen be changed so that the internal comment tab is default or the only available tab on the screen?
image2015-2-26 9:46:38.png
You might want to have a look at https://marketplace.atlassian.com/plugins/com.accxia.sd.plugins.tailor.tailorman-sd-confirm/server/overview
It adds a confirmation dialogue to all commenting features used in Service Desk.
1. Keyboard shortcut : 'G'+'G' + Start typing 'Screens' and hit Enter
2. Locate the appropriate screen ( Assign to 2nd Line) and click on the configure button under operations
3. You will see the Respond to Customer and Internal Comment Tabs, and Add Tab.
4. You may drag and drop the tabs as you like. Hence, drag the Internal Tab to be before the Respond to customer tab.
Screenshot from 2015-03-04 17:18:28.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wanted to do the same thing that Andreas Axelsten is asking but we don't see internal comment. Add comment field states that no user can add it to a screen. Is there a addon on that we need to add?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David, the Internal comment feature comes together with JIRA Service Desk plugin. https://www.atlassian.com/software/jira/service-desk https://www.atlassian.com/licensing/service-desk
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Adrian, We are using the service desk. The version that we are using is 2.3.2 we have 208 of 213 modules enabled the only modules that will not let me enable are Portal Context Preprocessor, Portal Context Interceptor, SLA time remaining, sla-threshold-event-when-handler, Keep on top of SLAs.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI, I'm in the same boat, i now i can default the internal comment field with a script, but would prefer to avoid it. I'm running v2.3.3 with the same disabled plugins as David. There are no tabs to reorder on my screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm having the same trouble as David and Jared. Running Service Desk version 2.4.1 with all 244 modules enabled. Any further suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jared, Are you able to share the script used to default to the internal comment? Cheers, Gaj
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Gajan, a little late but better than never.. we use the following script to set the internal comment tab as default. I let the script run with every NEW_CONTENT_ADDED event and not in an interval. The solution with an interval was not nice becasue users have seen the external comment tab at first and then the hide-change in the screen. Additional feature in my example is to do that only for specific Transitions. Here the code added in the description of a used screen field: <pre> <script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context, reason) { hideTabPublicComment(); }); }); function hideTabPublicComment() { var transitionName = AJS.$("#issue-workflow-transition-submit").attr("value"); if ( transitionName ) { if( transitionName == "Approve" || transitionName == "Reject" || transitionName == "Restart Approval" ) { var tabs = AJS.$("#sd-comment-tabs"); if (tabs.size() > 0) { AJS.$(".js-sd-internal-comment").children("a").eq(0).click(); AJS.$(".js-sd-external-comment").hide(); } } } } </script> </pre>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does anybody know how to do this?
I'm not a developer so I just want to know how to do this step-by-step.
Thanks in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any one can explain how do we configure screen as shown by Adrian Stephen above?
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.