Changing the UI actions of UPDATE and Submit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 07:31 PM
New guy back again with a question, actually, may be a few. I am trying to change the UI Action behavior of my mobile view of my web portal, shown below.
The issue I am running into on the NOW MOBILE, is once I submit it, it doesnt go to the ticket, but insteads gives me a record number which leads me to nowhere (assuming because the record never saves to table).
I doubt this next one is related, but I think its the same nature of a issue, I am trying to find this update UI Action, so when a person updates their record, it doesnt go back to the Service Catalog and remains on the record being worked on.
Any help is appreciated (Also I might be ahead of myself because I havent done any of the UI training yet)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2025 05:32 AM
Hello,
regarding first question, be more specific. What table, paste UI Action script etc.
Regarding the second question, you can achieve it by modifying UI Action script. Add
action.setRedirectURL(current);
before a row with code
current.update();
If my answer helped you, please mark it as correct and helpful, thank you 👍
Martin