Hello Everyone,
I have implemented saving functionality in Freedom Ui.
const saveRecordRequest = {
type: "crt.SaveRecordRequest",
preventCardClose: true,
$context: request.$context
};
// now execute the save request and check if it was successful
if ((await request.$context.executeRequest(saveRecordRequest))) {
// save was successful, continue with something else here
}
else {
// save was not successful (maybe due to required fields not being filled in)
}
I have followed this link
https://customerfx.com/article/saving-a-page-before-some-action-on-a-cr…;
it is saving the record but after saving record it is not automatically coming to list page as save button functionality is working.
Can anyone Please guide me here, How I can get that