Hi,
I have a business case to update a field in a detail in other records and then delete the selected record from a detail after clicking "Yes" from the confirmation box.
As of now field is updated to all records on click of delete button in a detail.
{
request: "crt.DeleteRecordRequest",
handler: async (request, next) => {
await next?.handle(request);
console.log("Deleting a record in detail");
//to validate if I clicked Yes or No from the confirmation box
}
Any suggestions is really helpful.