Hoe do you add the ‘year’ tab to a scheduler in dhtmlxlayout.
(most scheduler examples presuppose scheduler instantiates in div so I’m unsure of the correct method)
You can place the initialization html on the page, same as in any non-layout based sample, and when initing the scheduler, do it like next
dhxLayout.cells(“b”).attachScheduler(new Date(2009,05,30), “month”, “scheduler_div”);
Where scheduler_div - id of html container with scheduler’s html code.
In such case scheduler will use html from the provided snippet, but will attach result div to the necessary element of layout.
Thankyou very much.
Works perfectly - and now I understand.