Scheduler Drag and Drop

If you are in month mode how do you determine what date you dropped on to?
Here is the snippet I created missing the drop date:
https://snippet.webix.com/e40gp98c

Hi @daverch ,
You could retrieve drop dates using this:
context.from.getActualDate(e)
Plese, check the snippet: Code Snippet

Once I figured out this was an object I made a slight change in the code:
context.from.getActualDate(e).start_date

There was another problem if you drag and drop within in the same date you would get an null error. This code fixes that:
onBeforeEventDrop(context, e) {
if (context.from.getActualDate(e)==null) return false;
var date1 = context.from.getActualDate(e).start_date;
webix.message(">>>"+date1,“info”,2000);
return true;
},