Autopopulate Summary with data from other fields in the same work item
One answer
Mike,
I think, you have these options you can try, starting with low and then increasing complexity.
Make the Summary field read only if you calculate from the input values.
I think, you have these options you can try, starting with low and then increasing complexity.
-
Use JavaScript and a calculated value provider. See https://jazz.net/wiki/bin/view/Main/AttributeCustomization and https://jazz.net/library/article/1093 Lab 5 for hints and examples. This would be the easiest option. I am not sure you can get the Onwer ID, I believe you can only get either the owner UUID [getName()] and the user name [getLabel()].
- Use a JavaBased calculated Value Provider. I provide example code here: https://rsjazz.wordpress.com/2013/06/26/attribute-customization-java-based-value-providers-conditions-and-validators/
-
Work Item Save Participant, which would actually save a second time after setting the summary
Make the Summary field read only if you calculate from the input values.