- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2019 03:14 AM
when I click on save button of problem form it’s moved to problem_list.do, I want form should be stay on same page after saving and don’t go on problem list.
Any help will be appreciated.
Solved! Go to Solution.
- Labels:
-
Problem Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2019 07:35 PM
Hi,
Can you share a screenshot of this save button, if that a custom UI action? In my personal developer instance I only see: follow, update and delete. If you have a save button and it's a UI action (that's server side), you can modify script like this to stay on same record:
action.setRedirectURL(current);
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2019 07:35 PM
Hi,
Can you share a screenshot of this save button, if that a custom UI action? In my personal developer instance I only see: follow, update and delete. If you have a save button and it's a UI action (that's server side), you can modify script like this to stay on same record:
action.setRedirectURL(current);
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2019 01:21 AM
Thank You So much Allen!!! it works for me.