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 move on problem list. Any help will be appreciated.

Radhe
Tera Expert

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.

1 ACCEPTED SOLUTION

Allen Andreas
Administrator
Administrator

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!

View solution in original post

2 REPLIES 2

Allen Andreas
Administrator
Administrator

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!

Radhe
Tera Expert

Thank You So much Allen!!! it works for me.