Hi guys,
I'm currently using this method to confirm Drag and Drop event in Schedule component.
const onDragStop = (args) => {
if (confirm("Please confirm appointment change !")) {
args.cancel = false;
} else {
args.cancel = true
}
}
This approach is working great but I'm trying to achieve Scheduler Drag&Drop confirmation through component state change within the DialogComponent(ej2-react-popups).
I think It's much better for user experience, to have a nice modal confirmation.
Is that possible ?
Cheers