Calendar settings

Hello Sir,



I have downloaded and reviewed the DHTMLX Scheduler product. Do we have any options to change the default interval time when we are creating an event. Currently all events when try to create are 5 minutes. I want to specify the fixed minimum interval range which can be increased but not decreasing, i,e., if I want to set the interval range as 30 minutes the drop down should display only for example 9:00AM,9:30AM,10:00AM…etc.



Also can I restrict the days for creating an event. Also do we have the options to not to capture the event in the same time slot.



Is there an option to specify the working hours for a particular day. Each individual day will have individual working hours. For example for Monday the working hours will be 9:00AM - 1:00PM and 2:00PM - 6:00PM, for Tuesday it will be 10:00AM - 12:30PM and 2:20PM - 5:00PM.



If there are no default settings is there any documentation to do all such things.



Thanks in advance.

Sateesh B.

Do we have any options to change the default interval time when we are creating an event.
scheduler.config.time_step = 30; //default event length as 30 minutes
also, this and any other properties of event can be defined by using onEventCreated handler

>>Also can I restrict the days for creating an event.
Not possible, but you can use onEventCreated handler to change the date or time of newly created event to the allowed one.

Hello,

I have the same problem .

(1) I want to stop the create event for some specific time(suppose on date 21-April-2011 from 12:00AM to 07:00 Am , 22-April-2011 from 05:00AM to 10:00 Am )in this time there would be no user create the event and we can change the color. is this possible ? if yes then how can we set this ?

(2)can we display time on mouse hover in the blank area of calendar. I mean where ever mouse goes there should be tooltip showing the where the mouse is pointed.

thanks in Advance…

Thanks,
Tarun Malpani.

Hello,

I want to stop the create event for some specific time(suppose on date 21-April-2011 from 12:00AM to 07:00 Am , 22-April-2011 from 05:00AM to 10:00 Am )in this time there would be no user create the event 

It’s possible, you need to attach your custom handlers to different events and either block/delete events which don’t pass your conditions. Check out Events page in our documentation.

can we display time on mouse hover in the blank area of calendar. I mean where ever mouse goes there should be tooltip showing the where the mouse is pointed.

The is no easy way to do it though it’s possible.

Best regards,
Ilya