Layout in dhtmlx scheduler

Hi,

I was trying to use dhtmlx scheduler in my MVC project. Everything was fine. One thing is that, the scheduler is occupying the whole page. I need to make the scheduler within my layout. Is there any possibilities to make this.

My view code is something like this.

[code]function init() {
scheduler.config.xml_date = “%m/%d/%Y %H:%i”;
scheduler.init(“scheduler_here”, new Date(2012, 8, 1), “month”);
scheduler.load("/Calendar/Data");

            var dp = new dataProcessor("/Calendar/Save");
            dp.init(scheduler);
            dp.setTransactionMode("POST", false);
        }[/code]

Try to put up some height and width setting with your Index view. Like this, [code]

[/code].