- 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-07-2024 11:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 11:09 PM
It is not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 11:16 PM
action.setRedirectURL(current);
this working .. solved

- 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