Hi I want to build a custom panel/custom field on the Jira Agile board view and I need it to be refreshed after something on the selected issue changes. I see there are separate rests for header, subtasks, issuelinks etc, but I don't know how to tell Jira to send rest to update the content of a custom panel?
Hello,
You could check if your panel updates or not by Jira itself. If it is not updated, then you would need to implement the update feature in your panel code (You could use a timer to check, if something changed in the issue).
yes, it doesn't update. I was wandering if there is some more proper method than timers, like to tell Jira that it has to update my panel also.
I see there is some logic - ISSUE_EDITOR_RELATED_TABS in EditableDetailsViewReloader.js and was wandering if I can somehow include my tab to this reloader. The problem with timers and refreshing is that it will make the whole update process longer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What I meant is to make a timer in your js. It will not make updates work longer. The logic is the same like in EditableDetailsViewReloader.js. If you could attach your panel to the same reloader then it would be good.
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.