Hello.
I want to show by default the value "Paso N° " in sumamry field, when an user create an issue.
I tried with that:
<script type="text/javascript">
if (document.getElementById("summary").value == "") {
document.getElementById("summary").value = "Paso N° ";
}
</script>
The problem is that when I mark the "Create Another" Checkbox, then in the second issue that I want to create, the field summary appears null... maybe I have to change my code. But I don't know how.
Thanks.
Hi,
Try this,
<script type="text/javascript">
jQuery(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
summaryToBeCopied();
});
summaryToBeCopied();
function summaryToBeCopied(){
$('#summary').val('New Val');
}
});
</script>
Hope this Helps.
Add the above in the field description.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The problem with Nitram's script is it is applied to all Issue Types. Can someone please modify this javascript to only apply to, say, Issue Type "Task"?
I'm using Jira 5.2.11.
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nitram,
Thanks for your code, it works perfectly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Raye raskin - what you can do is - you can create a seperate field configuration for the issue type task - and then update the summary description under that so that it runs for Task issue type alone.
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 adding code in desription field Summary in configuration field on project(not default configuration), but it does not work for
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello!
Could you help me also with writing javascript about change field "summary" when user create issue. Your script above pretty good works, but i have another problem. So, I change summary for type issue "contact". User can make another issue type, for example, "contract". If the last created issue type "contract", then user on the create screen screen change project and issue type (contact) and field "summary" is null. How can i fixed this?
I hope for your help! Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how you are adding javascript?
check this
https://answers.atlassian.com/questions/47843/strange-javascript-problem-in-create-screen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't mind me saying this, isn't summary supposed to be unique. Out of curiosity, why are you creating issues with same summary?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
He's just trying to set a default value... eg "Step no: " - and the user appends 99 or something.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exactly, I want to show a default value, and then the users are going to change it (Paso N° 1, Paso N° 2, etc.).
Nitram, your code works perfectly.
Thanks!
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.