- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2025 07:08 PM
Dear experts,
I am creating a redirect rule for my risk event form, and I would like to know what is this Back button UI Action name is so that i can modify my script accordingly. Attached is the picture of the back button. Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2025 07:31 PM
Hi @ChuanYanF ,
That's not an UI action that's HTML Button element with onclick it calls a function which takes to the previous page
you can target that element using DOM but like @Maik Skoddow said it's not recommend
if you want to you can create an UI action of your proffered script and ask users to use that
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2025 07:18 PM
Hi @ChuanYanF
It's not an UI Action but an hardcoded UI element. And I wouldn't recommend trying to imitate that button. The underlying topic more complex than thought and users already have everything they need for a "go back" behavior: the browser's back button and the "History" menu. For the remaining gap prefer implementing context-wise buttons which take your users to the right place in the underlying business process.
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2025 07:31 PM
Hi @ChuanYanF ,
That's not an UI action that's HTML Button element with onclick it calls a function which takes to the previous page
you can target that element using DOM but like @Maik Skoddow said it's not recommend
if you want to you can create an UI action of your proffered script and ask users to use that
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya