is it possible to load only 1 unit in the weekview, and maybe even scroll units in weekview
there to many events if i load all the units at the same time in the weekview…
What about displaying events for one select unit in weekview ?
I have found the scheduler.filter_week, that may respond to my question.
how can i set this with the attach function?
dhxLayout.cells(“b”).attachScheduler(null,“unit”);
The attachScheduler method doesn’t allow to use “unit” view. You should use attachObject method to place the container for scheduler and then initialize the scheduler in it. But in this case the scheduler won’t be resized with layout cell. If the cell has fixed sizes, this approach with do.
Another solution is to modify the dhtmlxcontainer.js, attachScheduler method and add units support here:
obj.innerHTML = ’
instead of
obj.innerHTML = ’
This was very helpful by the way