In my ASP.NET MVC application, I am using a DayPilotScheduler. If anyone is trying to move the event, then it has to display a loading symbol. So what I have done is,
In my HTML code, I have added,
EventMoveHandling = EventMoveHandlingType.JavaScript,
EventMoveJavaScript = "eventMove(e);"
And in the javascript,
<script>
function eventMove(e){
//Code for displaying loading symbol
// Code for calling OnEventMove(EventMoveArgs e)
}
</script>
How to call OnEventMove(EventMoveArgs e) from this javascript function?