Java script is not working

Chaithra N
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 6, 2014

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>

1 answer

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 6, 2014

you need to include your script in

&lt;script type="text/javascript"&gt;
   jQuery(document).ready(function($) {
       JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
			$("#summary").val("Test Summary");
			$("#summary").closest('div.field-group');
       });
   });
 
&lt;/script&gt;

check the following question

https://answers.atlassian.com/questions/47843/strange-javascript-problem-in-create-screen

Chaithra N
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 6, 2014

Thanks for commenting.

Still no luck, java script doesnot run if used on the User field.

RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 6, 2014

add the above script on annoucement banner and check first

Chaithra N
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 6, 2014

Script works fine in Announcement or any other fields.

Failing only on User Field

RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 7, 2014

as i specified in my answer on given link you need to add javascript in a plugin as webresource module

Suggest an answer

Log in or Sign up to answer