Hi again,
Is it possible to do dynamic highlighting? I explain my case:
I’ve a database table with hundreds of “holes” identified with ID, StartDate and EndDate. On the other hand I’ve another table with people filling this holes, identified by IDPeople, StartDate, EndDate.
I accomplished to show the people “events” in a timeline scheduler, but now I need to mark all the “holes” too. The finality is to show which holes are not yet covered by people.
My idea is to highlight (docs.dhtmlx.com/scheduler/limits.html) this holes. I tried to highlight one of them with addMarkedTimespan() and it works ok, but I’ve annual calendars and there are thousands of holes.
First I wanted to do something like this:
[code]<?php foreach ($holes as $hole) { ?>
scheduler.addMarkedTimestamp(…);
But I think that with thousands of holes it can be a performance problem.
Is it possible to highlight dynamically? I mean highlight only what is showed every moment. In the timeline week view highlight the current week, and if I change the week show the new highlights, and so on.
Thx