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

Scheduler Control

Asked by JM
8 years ago.

Is there a difference in the features for Angular JS and Jquery Plugin provided for Scheduler Control.
Which one is better.
Our application would have 1000 Rows and 30 day column. Performance is critical

Answer posted by Dan Letecky [DayPilot]
8 years ago.

If performance is critical then don't use AngularJS. It brings overhead related to watching the data sources (config which includes resources, events).

The jQuery plugin is an alternative way of initialization and doesn't bring any performance penalty.

You can also use the plain JavaScript syntax:


<div id="dp"></div>
<script>
var dp = new DayPilot.Scheduler("dp");
dp.startDate = "2015-01-01";
// ...
dp.init();
</script>
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.