Hi All,
Can we display the values of custom fields dynamically?
The requirement is :
On Clicking a transition, a screen containing a Select List and Mutlicheckbox field should appear where the values of the fields should be loaded dynamically.
Example: The select list should contain all the linked issues from the current issue and on selecting any one of the values from select list, the components in the selected issue should be displayed in the multiple checkbox.
Thanks
Binisha
HI,
Look this code, take it as a example.This is how you need to make a REST call from JS.The below function which takes a argument data is the callback function.
you can get linked issues, components and once you get the response take it and update.
AJS.$("#customfield").change(function() {
jQuery.getJSON(baseurl + '/rest/api/latest/issue/' + issuekey', function(data) {
// callback function , create your logic to handle the get request data
})
})
Hi,
This can be achieved by JS and REST.
Make a REST call from JS and update the select list.
Once again on 'onchange' event call REST to bring the components and update the screen using multiple check box.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nitram,
Thanks for your response. Apart from the options added explicitly to the custom Fields, will it take the other externally configured values?
Do you have any sample code or link to achieve this?
Thanks
Binisha
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.