Unable to load a blank calender/schedule with CakePHP 2.3.2

Having a hard time getting a blank schedule to appear on my index page, it looks like the javascript and css is linking properly when I examine in after the page loads. Let me know if you guys need anything else.

Thanks for any help,
Clay

/schedulerMain.js
$(document).ready(function() {  
     scheduler.init('scheduler_here',null,"week");
});


//Index.ctp

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <?php echo $this->Html->script('/dhtmlx/dhtmlxscheduler'); ?>  
  <?php echo $this->Html->css('/dhtmlx/dhtmlxscheduler'); ?>  
  <?php echo $this->Html->script('schedulerMain'); ?>   
<!--  <script src="/dhtmlx/scheduler/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script>
   <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" charset="utf-8">  -->
</head>  

<body>
  <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'>
        <div class="dhx_cal_navline">
            <div class="dhx_cal_prev_button">&nbsp;</div>
            <div class="dhx_cal_next_button">&nbsp;</div>
            <div class="dhx_cal_today_button"></div>
            <div class="dhx_cal_date"></div>
            <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
            <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
        </div>
        <div class="dhx_cal_header">
        </div>
        <div class="dhx_cal_data">
        </div>       
</div>
</body>
</html>

Code looks fine, there are two questionable areas

a) you are using $(document), but I don’t see where you are including jQuery
b) you have height:100% on the div, try to change it with some fixed width in pixels ( percent based size can be used as well, but it relates on sizing of the whole page )

Found out the error this weekend, ended up having to do with the weird way CakePHP renders their view. Had to setup all this code in a layout and just use the actual view for any php form additions I wanted to add for events. Noticed I was getting double and tags that were invalid when I looked at the source information.

Thanks for looking!