Show times while dragging a event

Hi,

I want to see the times as I drag each end of a event in the scheduler while in timeline view. Is this possible by default or does it require some work? I was hoping to be able to see the times in a tooltip or something similar, does anyone have any experience with this?

Thanks.

Or resizing as well sorry forgot to put that in the original post.

Hi,
a quite simple solution would be to redefine the template of event bar text
docs.dhtmlx.com/scheduler/api__s … plate.html

scheduler.templates.event_bar_text = function(start, end, event){ var text = event.text; if(scheduler.getState().drag_id == event.id){ text += ", <b>"+scheduler.templates.event_header(start, end, event)+"</b>"; } return text; };

Thanks that worked perfectly.