search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Scheduler full update slow in IE 10

Asked by lisse
9 years ago.

We are evalutating the latest MVC scheduler and are having trouble with performance when it comes to Internet Explorer 10. We are testing with 159 resources and 159 events and the initial load is quite fast. But when we click on the resource header to sort resources a full update is performed. It takes 10 to 15 seconds to reload the scheduler. If we try the same thing in Firefox it completes in 4 seconds. It has nothing to do with the data retrieval. Any suggestions?

@Html.DayPilotScheduler("dps", new DayPilotSchedulerConfig
{
BackendUrl = Url.Content("~/VehicleAllocation/Backend"),
CellGroupBy = GroupBy.Day,
CellDuration = 60,
RowHeaderWidthAutoFit = false,
SnapToGrid = false,
Days = 1,
UseEventBoxes = UseEventBoxesType.Never,
Scale = TimeScale.Hour,
StartDate = DateTime.Now,
CssOnly = true,
Theme = "scheduler_white",
TreeEnabled = true,
EventHeight = 25,
EventClickHandling = EventClickHandlingType.JavaScript,
EventClickJavaScript = "alert('selected')",
EventDoubleClickHandling = EventDoubleClickHandlingType.JavaScript,
EventDoubleClickJavaScript = "modal('Event/Edit/' + e.id())",
EventRightClickHandling = EventRightClickHandlingType.JavaScript,
EventRightClickJavaScript = "alert('rightclick')",
HeaderColumns = new RowHeaderColumnCollection {

mvc
Comment posted by Dan Letecky [DayPilot]
9 years ago.

Probably too late but what version of DayPilot are you using?

The latest 7.9 version should eliminate most performance problems related to the number of resources as it uses progressive row header rendering by default.

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.