Maybe you implement a events.clear() method.
Found a workaround:
dp.events.all().each(function(e) { dp.events.remove(e); });
This is the fastest method:
dp.events.list = []; dp.update();
Dan thanks