Changing the UI actions of UPDATE and Submit

Community Alums
Not applicable

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.

ChrisD875154371_0-1739244478729.png

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.

ChrisD875154371_1-1739244637970.png

 



 

Any help is appreciated (Also I might be ahead of myself because I havent done any of the UI training yet)

1 REPLY 1

Martin Friedel
Mega Sage

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