I would like to be able to fill a text field with the contents of two other fields when an event happens.
I have plugins that let me write the contents of Field A into Field B. What I would like is to be able to do this:
Field C = Field A & " " & Field B.
I am assuming that you are writing an event listener for this so ,when the event occurs get the value of the two fields A & B , then concatenate it, then update the text field C with the new concatenated value.
Below is a code snippet for updating a cutomfield
CustomField customField = customFieldManager.getCustomFieldObjectByName( "your_customfield_name" ); IssueChangeHolder changeHolder = new DefaultIssueChangeHolder(); String concatenated="A"+"B"; //here A and B are values for textfield A and textfield B //Update the custom field value customField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(customField), concatenated),changeHolder);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
While I look forward (!) to figuring out how to write listeners someday, for now I was looking for a plugin 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.
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.