Our pure JavaScript Scheduler component


Post by manifiesto »

Hello! My first topic! :roll:

I have a problem with 'Non-continuous' time axis when i'm dragging tasks/events.

The problem is that the scheduler don't respect the time resolution (15 min in this case) when the user is dragging tasks/events.

Your example have the same issue: https://www.bryntum.com/examples/scheduler/timeaxis/

Do u know some solution?

Thank u very much!


Post by mats »

It works fine when setting this in the demo file SchedulerCustomTimeAxis.js in that demo:

timeResolution    : {
                    unit      : 'MINUTE',
                    increment : 15
                },

If it doesn't work for you, please upload a simple test case showing your code.


Post by manifiesto »

Hello mats,

Thanks for your quick response.

Sorry, I didn't explain the problem correctly. The problem is when you're dragging and you get to the end of the current day.

The task/event doesn't jump to the next day, the task/event continues in the current day but out of time range.
I have recorded a video so that it is better understood.

https://vimeo.com/437835574/35e1f02638

Thank u!


Post by saki »

Add the following line to examples/vue/javascript/simple/src/App.vue and test the dragging:

:timeResolution   = "{increment:15,unit:'minute'}"

EDIT: This is response to the original problem, before you posted the video.


Post by saki »

Actually, it's a bug. The ticket is here: https://github.com/bryntum/support/issues/1174

Note: The event may look shorter duration - it's by design - but it shouldn't disappear.


Post Reply