hi there,
The script is no doubt very great and helpful. I am trying to add an reminder section to the event with adding email and a popup option.
Can anyone guide me is there any help/documentation for this?
Thanks,
Sachin
hi there,
The script is no doubt very great and helpful. I am trying to add an reminder section to the event with adding email and a popup option.
Can anyone guide me is there any help/documentation for this?
Thanks,
Sachin
Hi,
you can an additional lightbox section :
docs.dhtmlx.com/scheduler/custom … ditor.html
docs.dhtmlx.com/scheduler/lightbox_editors.html
Hi, Sorry for not being clear. I am asking about reminder notification when an event is set. Say I have set an event today at 9AM. So how can I get notification at say 8:55AM via popup or highlighting that event?
Thanks,
Hi,
how you can get upcoming events :
var from = new Date();
var to = scheduler.date.add(from, 15, "minute");
var evs = scheduler.getEvents(from, to);
if (evs.length > 0) {
dhtmlx.message("You have "+evs.length+" upcoming events!");
}
So you need to call this script with some 15 minutes interval to get the notification. You can also add to those events the “color” ("#cccccc" format) property instead of a pop-up.
Hi,
In which file do you have to put the code?
Its not verry clear for me.
Regards,
Roger
Hello,
you call this code from somewhere on your page (the same place where you configure the scheduler) from setInterval function. I.e. the code should be called each 5-15 minutes