Basically I created my own dialog window for when editing an event. I attached a function to the onDblClick event by using scheduler.attachEvent and passing the desired event and the function.
The function opens a window which handles the required update operations. When I close it, the event that I just double-clicked on has disappeared from the scheduler.
That took me by surprise. The dialog window doesn’t manipulate the scheduler events directly, it just allows a user to change some information which is packaged and sent to the server for approval, upon submisison or canceling, it just removes itself and returns the user back to the scheduler. The underlying event on the scheduler is not changed in anyway, why does it disappear from view? Am I missing some extra steps such as refreshing?
Appreciate your advice.