Hi Dan,
I work with Veronique and we have integrated the latest version of daypilot in our product.
However, delete events is not working anymore if dp.eventUpdateInplaceOptimization = true;
I was investigating why. In your scheduler demo, dp.eventUpdateInplaceOptimization = true; is commented
//dp.eventUpdateInplaceOptimization = true;
So, inside `this.events.remove`, as inplaceEnable is false, it call calendar.events._postponedUpdate(rows); instead and it works. But if you enable this flag, it does not work anymore.
It will call calendar._loadRow(rows[0]); and row[0] in this case is a Number, not a row objec anymore
Could you guys check it to see if my investigation is alright, or if we are missing something?
Thanks