fire an custom event

xin xin June 3, 2014

what I need is when the field "component" changed , it will fire an custom event . How can I implement this custom event ?

2 answers

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 3, 2014

You'll need to hack the core of Jira's workflow engine to do this. Changing component already throws "issue updated" from the edit screen, or whatever event you want if you do it in a transition. There's no support for more than one event being thrown and you can't customise "edit" without hacking the core code.

I'd forget it.

Write a listener that catches any "issue has changed" type events, checks the issue to see if component has changed, and then trigger whatever it is you wnat to do when component changes.

Or remove component from the edit screen and only let it change during transitions, where you can choose the event to fire.

0 votes
Haizelyn Casimiro June 3, 2014

Hello xin xin,

May I know what kind of custom event you want to perform once the field "component" is changed?

Suggest an answer

Log in or Sign up to answer