Hi
I have written a java script effecting textbox based on selected list. Working fine for default issue type and not effecting if i change issue type is changed.
My screen has project , issue types, select list and textbox.
Example if I open create issue --> select issue type bug - java script will fire. Now if I change other issue type -'discussion' --java script want fire.
Note - custom field values are same.
Any one can help me -
My script-
<script type="text/javascript"> priority = document.getElementById('customfield_807401'); if (priority) { target = document.getElementById('customfield_807418'); if (priority.value != 10836) target.style.display='none'; priority.onchange=function() { if (this.value == 10836) { target.style.display = ''; target.value="enter message here"; } else { target.style.display='none'; } } } </script>
try with this script
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { callFunction(); }); callFunction(); function callFunction(){ hideShowField(); $('#customfield_807401').change(function(){ hideShowField(); }); } function hideShowField(){ var priorityValue=$('#customfield_807401').val(); if(priorityValue == '10836'){ //to show field $('#customfield_807418').closest('div.field-group').show(); $('#customfield_807418').val("enter message here"); }else{ $('#customfield_807418').closest('div.field-group').hide(); } } }); </script>
if you want to work this on create scren then you have to use webresource module.
did you gone through link which i have posted on my previous answer( i got same problem when we migrated to jira 5.x)
make your javascript run as web-resource module and it might work.
Although I have solved the javascript problems loading as web-resource module.
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.
you go through https://developer.atlassian.com/display/JIRADEV/Web+Resource+Plugin+Module
<strong>Modify the above formed default atlassian-plugin.xml as</strong> <atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2"> <plugin-info> <description>${project.description}</description> <version>${project.version}</version> <vendor name="${project.organization.name}" url="${project.organization.url}" /> <param name="plugin-icon">images/pluginIcon.png</param> <param name="plugin-logo">images/pluginLogo.png</param> </plugin-info> <!-- add our web resources --> <web-resource key="yourmodulekey" name="your Web Resource module name"> <dependency>com.atlassian.auiplugin:ajs</dependency> <resource type="download" name="yourfilename.js" location="{location of yourfilename.js}"/> <context>atl.general</context> </web-resource> </atlassian-plugin>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what is the jira version you are using???
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.
what is the jira version?
if you are using jira 5.0 and later then 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.
Are you sure the javascript is loaded on screen when the new issuetype (discussion) is selected? Maybe you haven't added the javascript in the description of the field in the corresponding field configuration?
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.
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.