Hi Community,
How can I do in the new Freedom Ui so that the page does not close after saving a record?
I know the method in the old classic page, but I can't find the way to do it in the new Freedom ui.
Thank you in advance.
Like
2 comments
17:54 Aug 28, 2023
This works, but does produce some odd results on some pages - for example the Case page shows several things once the CreatedOn is populated and it appears that the data isn't reloaded after the save. So you'd probably also have to do a reload in addition to this:
{ request: "crt.SaveRecordRequest", handler: async (request, next) => { request.preventCardClose = true; return next.handle(request); } }
Ryan
Show all comments