I want the user to confirm an event resize (and move etc) and store the initial state of the event then compare it to the final detail to show a dialog.
In the resizeStart I can console.log(args) and everything works ok.
As soon as I add to store the initial state, the drag resize stops working. The resizeStart event triggers but the on-screen resizing doesn't work.
e.g.
onApptResizeBegin(args) {
console.log(args);
this.setState({apptChangeDetail: args.data}); <-- adding this stops resizing
}
Anybody know why this is happening, and how to solve it?
Thanks