- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 10:53 PM
Hi,
I am updating field value by UI action button.. i want to reload page after clicking the button so that update info show. below script not working.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 11:14 PM - edited 03-07-2024 11:15 PM
Hi @Rosy14
If you are using a client UI action, then within the onclick function you can pass:
g_navigation.reloadWindow();
which is client side API
For server- side, you can always use:
action.setRedirectURL(current);
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 05:09 AM
Hi @Rosy14
if the solution worked feel free to mark the response as correct so it ends up in solved queue
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 11:51 PM
Hi @Rosy14
Please use action.setRedirectURL(current);
Use below script: