How to improve speed of the Scheduler (when showing many events)
Last revision: Feb 14, 2011
Basic Checklist
- Upgrade to DayPilot Pro 6.2 SP3 or later. Versions prior to 6.2 store all events in the ViewState (see also StoreEventsInViewState property). Even if you disable the ViewState using (ViewStateEnabled property) the ViewState synchronization code is generated and sent to the client with every CallBack.
- Make sure that you load only the necessary events on the server side (check you SELECT command). You should limit the query to the events between StartDate and StartDate + Days.
- Turn off the ViewState for the control (EnableViewState="false"). This
will not improve the rendering speed but it will reduce the data
transferred with PostBacks/CallBacks.
- Enable POST request compression.
Dynamic Features
The DayPilot Scheduler has special features that help showing large data sets.
- Load only the events for the visible area using Dynamic Event Loading.
- If you are showing many resources, try to organize them into a tree and load the tree children dynamically using Dynamic Resource Tree Loading.
Related