Change size of yellow (selection marker)

Hello,

I would like to ask. I’m tried to create some scheduler and I changed the scale of Y-Axis to 15 minutes step. How can I change the yellow selection box when you click with the mouse to the step too? Because when I click it select 30 minutes step.

Here’s the screenshot: cdn.pbrd.co/images/B4rh4nxqJ.png

And one more thing. Can I somehow create the event from the time when the yellow box starts if I double-click on it?

Thank you very much for your help

Hi,

Try changing key_nav_step config:

scheduler.config.key_nav_step = 15;

docs.dhtmlx.com/scheduler/api__s … onfig.html

Right now there is no public api for getting selected time slot, but i think if you set global time step equal to step of the selection marker it should do the job:

scheduler.config.time_step = 15;

Thank you very much. That’s exactly what I need. :slight_smile: