Hi, I tried adding the a script in the 'description' of my custom field (which is a dropdown). I edited the field configuration for the custom field.
When I create an issue and change the value of the custom dropdown, I dont get to see the alert that I added. Am I missing something?
The script I used is:
<script type="text/javascript">
jQuery(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) {
callChangeFunction();
});
callChangeFunction();
function callChangeFunction(){
showHidField();
// dropdown custom field change function
$("#customfield_10300").change(function() {
showHidField();
});
}
function showHidField(){
//drop down field selected value
var dropDownFieldval = $.trim($("#customfield_10300 :selected").text());
alert(dropDownFieldval);
if(dropDownFieldval == 'MAS'){
alert('hello');
}
});
</script>
you did't closed second function, try with this script by opening create screen in new tab(right click on create issue button and click on open link in new tab), if it is working in this page and not working in popup then load it as webresource module in plugin as @Bharadwajsaid
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) { callChangeFunction(); }); callChangeFunction(); function callChangeFunction(){ showHidField(); // dropdown custom field change function $("#customfield_10300").change(function() { showHidField(); }); } function showHidField(){ //drop down field selected value var dropDownFieldval = $.trim($("#customfield_10300 :selected").text()); alert(dropDownFieldval); if(dropDownFieldval == 'MAS'){ alert('hello'); } } }); </script>
Thank you all. I want to set the value of a second dropdown depending on value selected in first dropdown. I could'nt get it to work and hence tried alert to check my first dropdown's value selected.
After using the script above, I resolved my problem. Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am seeking to do same thing. I need to fetch elements, which are added to the document when a list box is used. For some reason JIRA.Events.NEW_CONTENT_ADDED is not triggered for me when i use a list-box. Instead it triggers just one time when the create issue dialog opens. (because the dialog adds content it triggers the change event, so the event itself is working). AJS.$(document).ready(function() { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) { alert('more content added'); }); }); using a listbox on create-issue dialog does not trigger the alert.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
where you added your script? if you want to trigger on change event for list box then you need use same code as i specified in my answer!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is no event fired for me when i use list box with the code above. I am sure the script is on page and active. It is actually triggered when pop up dialog appears. But then it remains quite. Even though, more content is being added to the DOM when i use listbox and it populates its options. my script is registered as webresource in atlassian-plugin.xml
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 real task your script should do ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is it going to second alert if you select MAS in dropdown?
you simply put dropDownFieldval in quotes and try.
Also you can refer this document from prasad https://answers.atlassian.com/questions/217176/show-hide-custom-field-depend-on-another-custom-field-value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you better try with web-resource module of jira.see 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.
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.