How to refresh jira issue page when status of issue is changed?

Hi!

I have a question about issue page refreshing when status of issue is changed.

I developed a jira plugin that support approval with custom popup screen.
When I want to request approval, the popup screen is displayed on top of issue detail page with web-content button.

When I complete the popup screen, I change the status of issue at that time the popup screen is closed. But after that there is no change in issue detail page.

I want to refresh issue page when I close the popup screen.
How can I handle it ? Help me !

You could do it via Javascript by triggering the JS API:

JIRA.trigger(JIRA.Events.REFRESH_ISSUE_PAGE, [issueId]);
3 Likes

Thanks. It’s works.

1 Like