Only One Time

Hi , i downloaded code individual elements from this site http://dhtmlx.com/docs/products/dhtmlxScheduler/compiler/index.shtml
and i checked every individual element like recurring , collision , unit view … etc
---->here my problem is i am creating event for only event for one day . if it is recurring also
----->and i didn’t get the unit view

i used these calendarint(),

function calendarInit() {
	
	scheduler.config.multi_day = true;
    scheduler.config.xml_date = "%Y-%m-%d %H:%i";
    //----- These 2 lines must be deleted since they contradict with the last 2 -----
     scheduler.config.details_on_create = true;
     scheduler.config.details_on_dblclick = true;

     scheduler.config.prevent_cache=true;
     scheduler.init('scheduler_here', new Date(), "year");
    // scheduler.load(jQuery.url.getChatURL("/calendar/eventsXml.do"));

    // scheduler.toPDF(jQuery.url.getChatURL("/calendar/eventsXml.do"),'gray');
       scheduler.attachEvent("onBeforeDrag", function () { return true; })
       scheduler.attachEvent("onClick", function () { return true; })
       scheduler.config.details_on_dblclick = true;
       scheduler.config.dblclick_create = true;
      }

can i do any modification for creating an multipule event or recurring event in a single day .

---->previously if i take individual JS files its working fine apart fom 2 things.
1----> Collision of recurring events,
2---->when i go for recurring events time period is not taking time ,
------> to overcome that issue i used to download the file all core elements in view and collision and i replaced .
now its coming with out collision ,working with time period.
Now can you clear me to create multiple events in a single day…

Problem with “compiler” confirmed. For now try to use separate js files from downloadable package.
Fix will be available in few days.