How to destroy event data in Mobile version

I’d like to unload all of the event data, clearing the memory so I can reload the data from the server. How would I do that?

(I want to do this based on user request, so reloading the entire page from the server is not preferred, as any other non-event data previously entered would be lost and I can predict situations where it would loop.)

Thank you,
Rob

Hello,

$$('scheduler').clearAll();

where ‘scheduler’ - id of your scheduler.

Best regards,
Ilya

:smiley: AWESOME!! :smiley:

Thank you!!
Rob