Planner - slow events creation

Hello

I use planner with week view. Creating some 500 items programmatically is slow, takes about a minute. The problem can be caused by conflict control.

How can I deactivate this control?

Do you have any suggestions how I could speed up creating items?



Thanks

Vladimir

Please use


Planner.Items.BeginUpdate
// create items here
Planner.Items.EndUpdate

The demo 30 performance demo also shows this to create 1200 items nearly instant.

It is very simple and effective. Speed is now OK.

Thanks

Vladimir