I did the custom field tutorial.
https://developer.atlassian.com/display/JIRADEV/Creating+a+Custom+Field+in+JIRA
Basically my boss wants to sort by parrent and child issues. I figure this will end up being two custom fields that I fill by splitting the Summary Field. What is the best way to do this without the user entering in the data twice.
I figure it is a parrent issue the child issue will just be an empty string.
Similar question here: https://answers.atlassian.com/questions/145942/is-possible-this-cf-script?page=1#147593
I read a little about it, unfortunatly I can only use first party plugins. Some strange rule I will never understand. I should have mentioned that in the original question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You mean Atlassian plugins? If you can't use third-party ones or write your own, I don't see how it can be done.
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.
I explained the problem to my boss and he told me to get it working with Sript Runner and he will see about getting permission to use the plugin. I told him as an admin he going to have fun with it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi Jason,
When you need to sort on 2 fields, you can easily do so in the JQL language, where you, as in SQL, mention the sort option:
project = "ProjectName" order by cf[001] asc, cf[002] asc
where cf[001] is the name of your parent issue and [cf002] is the name of your child issue.
hope this helps,
Jacques.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you, that makes sense for the sorting, but how do I populate the fields?
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.