Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×where the customfield is updated from?
if it updated from inline edit or "edit" screen it should automatically refresh the page content
can you please send a screenshot of the screen from where you do the update?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
so it is done from the detail panel on the right. This displays some custom fields as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah,
But from the detail panel on the right, it's the same as inline edit.
If you update a customfield from there, it is refreshing at the same moment automatically.
No need to manually trigger refresh as @Dan Buica ask
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, i don't see a reason to do it, but in any case, there is no way (that i know of) to refresh only the board, you can refresh the entire page (like reload), and you can do it by inject JS (if you are using Jira server and not cloud).
Does it answer your needs?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA.bind(JIRA.Events.INLINE_EDIT_SAVE_COMPLETE, function() {
location.reload();
})
Once the inline edit completed, this will reload your board page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where did you inject the JS in Jira server?
In cloud i think the only way to inject JS is from the announcement banner
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK,
In cloud you can't to that, the only solution in cloud was the "announcement banner" but i just remembered that they removed it from the new experienced Jira Cloud.
There is an open ticket to Atlassian about it, but till then, there is no way to inject JS, unless you create your own plugin for cloud to do what you want
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome.
Please mark my solution as the answer so this thread will be closed
Thanks :)
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.
@Nir Haimov What if the custom field is updated from REST API. Is there is any other way to refresh the page so as to see the new custom field value.
Thanks:)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.