Add/Remove lightbox without firing event to server

I have a custom form and complex json object that I have custom logic for saving/deleting. Currently I’m using .clearall and load to refresh the calendar after performing an update. This works but I would rather be able to delete/add the lightbox or add a lightbox without having to refresh all the data. It seems like the .addevent, .deleteevent fire the Save() event on the server. Thanks.

Hi,
if you use server side configuration of the scheduler (dhtmlxScheduler for ASP.NET), try removing this line from your config. It will disable automated updates to the server.
c#: DHXScheduler.EnableDataprocessor = true;
If you have client-side configuration - just not initialize DataProcessor object

In case you need to disable it temporary, you can cancel sending update to the server via public events of the data processor. If you cancel sending update to the server and remove event from the dataprocessor list (.setUpdated method)
docs.dhtmlx.com/api__dataprocess … event.html
docs.dhtmlx.com/api__dataprocess … dated.html
If you use dhtmlxScheduler.NET, the dataprocessor instance is available on the client-side as
scheduler.dataProcessor