Is it possible to adjust the way the sprints appear in the backlog?
At the moment it is shown in order of creation, not even on the startdate of the sprint.
I would like to order it on date or importance (when a start date is not created yet)
Hi, this CF is your implementation or it is one of the standart JIRA CF as text field, number field atc. ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Agree with Jobin, create new CF type (extends SelectCFType), in update or create method handle your changes and disable history log by
@Override
public String getChangelogValue(CustomField field, Object value) {
// No log into history tab
return null;
}
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,
Will this disabling of history log also disable email notification if this field value is changed? What if I want to disable history log, but still want the update event to be fired? As of now if this returns null, the changelog.vm email template will not have this field in the $changelog.getRelated("ChildChangeItem") either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Radek Kantor Your solution is causing the ISSUE_UPDATED event to not be triggered when updating the field via the edit screen.
Any solution for that?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is better that you create a new custom field. With the standard JIRA one, it will surely record the changes.
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.