Recurring.js

Have an issue when resize or move event occur and recurring is enable,

when is disable all working normaly.

Please provide a sample or demo link where issue can be checked ( if necessary you can send it directly to support@dhtmlx.com )

working example

dropbox.com/s/nyi7xm72qym730n/shedul-sam.7z

when resize event on time line it

Hello,
Can you send a complete demo(with all required code files and sample data), I couldn’t reproduce the problem with the attached one. It seems working with the latest version of the scheduler, no errors when i drag or resize events

when recurring - disable it works, but when use recurring - enable it goes for error

without <script src="Scheduller/ext/dhtmlxscheduler_collision.js" type="text/javascript" charset="utf-8"></script>

it return value null or empty.

and working like it must work.

Can i only catch up on resizing event time without scheduler.attachEvent("onEventChanged", function(event_id,event_object){ , and only move event or how catch up values from different view like timeline, week, day.

I use scheduler.attachEvent("onEventSave",function(id,data){ for creating and modify event from lightbox, but when use scheduler.attachEvent("onEventChanged", function(event_id,event_object){ for resize or move event.

At lightbox popup two event’s first on oneventchange then oneventsave

Hello,
the bug is confirmed, issue happens when you try to resize or move events from recurring serie with ‘collision’ extension enabled. it will be fixed in the nearest update. As a temporary solution please add this event handler to your page:scheduler.attachEvent("onEventCollision", function(ev, conc){ if(!(ev.event_length && ev.event_pid)) return true; var instanceDate = ev.event_length * 1000; for(var i=0;i<conc.length;i++){ if(!(ev.event_pid == (""+conc[i].id).split("#")[0] && (+conc[i].start_date == instanceDate))){ return true; } } return false; });

thx.