Question

Don't close the page after saving

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 1

Like

2 comments

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

Thanks for sharing Ryan

Show all comments