Is there a more efficient way to do this? I use a scheduler in with angular and update this every scound.
[code]
$interval(function(){
scope.dp.separators[0].location=new DayPilot.Date();
},1000);
[/code]
Then you see a Loading text every second and after a few minutes it breaks and the page do not react any more.
Is it possible to increase the performance?
Most of all I would like to have an out of the box implementation (Something like a currentTimeSeperator proptery :) ).
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.