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.
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.