We are testing JIRA 6.2.7.
If Java scripts is placed in the CustomField of Type User (in field config scheme), script does not work.
But if same script is placed in any other Field Type, script will work.
Can any one help on this.
Sample Script:
<script type="text/javascript">
var summaryfld = document.getElementById('summary').parentNode;
document.getElementById('summary').value= 'Test Summary';
summaryfld.style.display = 'none';
</script>
Even normal html code doesnot work if placed in user field
<b> Testing description </b>
you need to include your script in
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { $("#summary").val("Test Summary"); $("#summary").closest('div.field-group'); }); }); </script>
check the following question
https://answers.atlassian.com/questions/47843/strange-javascript-problem-in-create-screen
Thanks for commenting.
Still no luck, java script doesnot run if used on the User field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
add the above script on annoucement banner and check first
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Script works fine in Announcement or any other fields.
Failing only on User Field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as i specified in my answer on given link you need to add javascript in a plugin as webresource module
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.