Scheduler in tabform

Hi,

I have a working scheduler in a tabform and I would like to add a timelineview. How is this possible? I can’t get this working…

Thanks!
martin

<!DOCTYPE html>
 <head>
    <script src="../codebase/dhtmlx.js" type="text/javascript"></script>
    <link rel="STYLESHEET" type="text/css" href="../codebase/dhtmlx.css">
    <style>
        /*these styles allows dhtmlxLayout to work in the Full Screen mode in different browsers correctly*/
        html, body {
           width: 100%;
           height: 100%;
           margin: 0px;
           overflow: hidden;
           background-color:white;
        }
   </style>
 
    <script type="text/javascript">
      window.onload = function(){
    		dhtmlx.image_path='./codebase/imgs/';

    		var main_layout = new dhtmlXLayoutObject(document.body, '1C');

    		var a = main_layout.cells('a');
    		var tabbar_2 = a.attachTabbar();
    		tabbar_2.addTab('tab_2','tab_2','');
    		var tab_2 = tabbar_2.cells('tab_2');
    		tabbar_2.setTabActive('tab_2');
    		tab_2.attachScheduler();
    		scheduler.load('./data/scheduler.xml');
    		


    		tabbar_2.addTab('tab_3','tab_3','');
    		var tab_3 = tabbar_2.cells('tab_3');
      }
    </script>
 
 </head>
 <body>
 </body>
</html>

one more thing:
of course I know that I have to insert

<script src='./codebase/ext/dhtmlxscheduler_timeline.js' type="text/javascript" charset="utf-8"></script>


If I am not using the tabbar, this works of course, but with the tabbar I do not know where to put the div-classes like

<div class="dhx_cal_tab" name="timelinepro_tab" style="right:500px;"></div>

Thanks!
martin

solved…

I had to add the timelinetabs in
dhtmlxcontainer.js

But thanks anyway…
Martin