Info |
---|
Available since 1.0.0 version |
Repeating Issues add-on allow to edit custom field values when setup repeating actions like Clone Issue or Create Sub-task. To edit custom fields please clicking on "More..." link on repeating issue dialog - this will load all available custom fields that can be edited for given issue type.
...
Info |
---|
Only custom fields added to screens for given issue type will be available for edition |
All custom fields will have simple form input where static value or dynamic value can be provided - see Velocity Template Language in Repeating Issues add-on.
Sample custom field values or expressions
Custom field type | Value | Description |
---|---|---|
Any custom field type | $!sourceIssue.getCustomFieldValue($this) | Field will have the same custom field value as source issue. |
Date Time Picker | $!sourceIssue.getCustomFieldValue($this).addMonth(1) | Datetime field will have the date and time equal to the corresponding field value of source issue + 1 month |
Select List (single choice) | #if( ${repeating.date.month} === '10")10000#{else}10001#end | If the repeating occur in October then the select list custom field value will be option with id 10000. In other months the value will be option with id 10001 |
Select List (cascading) | /[20000, 20020/] | Field wil have cascading value with parent option with id 20000 and child option with id 20020 |
Checkboxes | /[10000] | Field will have selected checkbox for option with id 10000 |
...