Hi there,
I am searching a solution for my problem:
In JIRA, I am trying to configure a custom field that way, that it is automatically filled with a provided value, when in another field a specific value is chosen...
Example: In custom field "A" (Start Date )a specific (current) Date is chosen . Custom field "B"(End Date ) now should be filled automatically with 10 working days responsible chosen in field "A"
Any idea, if this can be done?
Thanks
shajan
There's a couple of ways you might want to approach this, and I'm not sure which one you want.
You've mentioned a "default" value. This suggests that you want to put a field on the create screen for the user to fill in, but instead of being left blank, it is pre-filled with a value that depends on the current content of another field. To do that, you will need to inject javascript into the create issue screen to catch changes in the source field, and calculate the target field, and then allow the user to change the target before creating the issue. You might be able to do that with the "Behaviours" module of script runner or another add-on, or hacking your own js in there, but it's not going to be pretty.
The other option is to calculate the field and not let the user change it. You have a couple of options there. Gaston's answer covers calculating the value on every change in a custom field, but you could also use a scripted field to display the calculated value. Again, you'd need ScriptRunner or a similar add-on to provide it.
I found some solution for power script plugin .
I have shred the youtube link for End date automatically updated in Create an issue with +10 working days
URL : https://youtu.be/YQkLeGxoa0A?t=272
I hide the “DAY” Custom-field for => Create issue, Edit issue and View issue Screens,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it's very useful for me thanks @SHANAVASH MOHAMED
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Shajan,
You can try with an script listener of scriptrunner to catch the issue edit event and update the field you need.
https://scriptrunner.adaptavist.com/5.1.8/jira/listeners.html#_custom_listeners
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found some solution for power script plugin .
I have shred the youtube link for End date automatically updated in Create an issue with +10 working days
URL : https://youtu.be/YQkLeGxoa0A?t=272
I hide the “DAY” Custom-field for => Create issue, Edit issue and View issue Screens,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @SHANAVASH MOHAMED
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.