New Event Jumping Right

I just upgraded to v3.7 and it’s looks great, works great and is 100% backward compatible with v3.0. Great job.

My users mentioned something odd happens which I am hoping there is a quick fix.

Here’s how to reproduce:

  1. go to the pro version sample: dhtmlxScheduler_v37_com_130220/samples/06_timeline/08_time_scale.html

  2. put your cursor in James Smith in the far right of the “00” time slot

  3. double click

  4. the event jumps to the right to the “15” time slot

Hello,
timeline rounds selected date to the nearest time_step value.
docs.dhtmlx.com/doku.php?id=dhtm … .time_step
For example if you have following config: scheduler.config.time_step = 15;// default value is 5 minutes and user clicks in right part of the cell, somewhere around 8:55, the date will be rounded to 9:00 and event will appear in the next cell. If user have clicked on 8:50, it will be rounded to 8:45 and cell won’t change

I had it set to 30 minutes. In version 3.0 it never jumped. Setting it to 0 looks like it fixed the problem.

Thank you once again.