I have a Custom field(checkbox field) Fruits with values Apples,Oranges,Lemon.
I have another Custom field(Text field) Shop,
When Apples is checked then i need to auto populate Shop custom field with value (TechDev)
When Oranges is checked then i need to auto populate Shop custom field with value (TechArch)
This is in a view/edit screen so i am looking for script listeners to do the job
I think we need to clarify the requirement first.
"Auto populate" is usually used to mean "when a field is presented to the user for them to put data in it, fill it in for them, with a suggested value, but let them continue to put what they actually want in the field if they don't like the suggestion". There is an often unstated assumption that if you're in an edit, you do not overwrite the current value (Mostly because that would *really* annoy your users, having to re-enter the current value on every edit)
But, you mention listeners, which leads me to the second possible meaning, which is that you don't want the users to be able to over-ride the pre-populated value, you just want to set the value based on data on the issue at a certain point in the lifecycle. (A second question in this case is whether you ever want them to be able to edit the value)
So, three options:
Thanks for your time, i am looking for option 2 with a listener.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The standard script for that is at https://library.adaptavist.com/entity/update-the-value-of-a-custom-field-using-a-listener You will need to write an "if then" bit for checking the value of the radio button.
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.
Bother. Sorry. Lithium does that sometimes - it has padded the end of the url with control characters. Either copy and paste the visible text of the url, or go to it again and edit the url to remove the %A32 type bits on the end of it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can't be the option 1 done without using scripts?
Please let me know if there is any other alternative for this.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, you need code to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Nic, In my use case, I'd like to capture "Fix Version History" in a separate custom field that allows multiple selections. This enables me to see how many times a particular issue was opened and re-opened for enhancements or bug fixes. How can I pre-populate the drop-down list for this custom field from the release versions that JIRA already maintains?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would not do it that way at all. The history captures all changes, and you should be reporting off that really. Also, a multi-select field would not capture open/reopen if it happened more than once. I'd be looking to script a scripted-field for this, one that can read the history and display all the data you need.
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.
Hi @anil musunuru,
As you mentioned ScriptRunner, did you think about Behaviours?
Populating fields depending on other fields is working pretty good with this. But you loose inline editing capabilities .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exactly,Thats the reason why i am looking for script listener to do it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- do you have any ideas on this or know someone who does?
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.