Hi there,
I hope Im on the right place for the maybe simple question as following and hopefully there is somebody how can help me.
I would like to use the Scheduler with/ in my website based on webix.
When I try to load the scheduler in the existing layout it dosnt work and I get the message “TypeError: e[i] is not a constructor”.
My “Loding-Code” looks as follows:
#############
$$(“ntgContentCols”).addView({id: “datePlanerContent”, type:“space”, cols:[
{ type:“line”,
adjust:true,
gravity:3,
id:“datePlanerCalendar”,
rows:[
{ view:“template”, template:“Termine”, type:“header” },
{ view:"dhx-scheduler",
date:new Date(2010,0,5),
mode:"week",
init:function(){
this.getScheduler().config.xml_date="%Y-%m-%d %H:%i";
this.getScheduler().config.first_hour = 6;
this.getScheduler().config.multi_day = false;
},
ready:function(){
this.getScheduler().parse("<data><event id='1261150506' start_date='2010-01-01 18:00' end_date='2010-01-03 18:00' text='Sister Act' details='Palladium' /></data>");
}}
]
},
{id:"datePlanerLongView", template:" "},
{view:"resizer"},
{id:"datePlanerShortView", template:" "}
]},1);
#############
Can you please tell me, where the problem is?
Thanks so far and greetings from germany Andreas