Hi,
I am implementing “auto save” when there are changes to the diagram. Basically, I have a timer function which gets called every 30 seconds. When it gets invoked, an ajax call will be sent to the server to save the diagram data. I am using diagram.isModified to check whether the ajax call is required and this flag will get reset when the successful response is attained.
My questions is if there is a built-in function that I can use to block user inputs while waiting for the response from the server.
Thanks.