search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Display Loading Icon when Event Moving in DayPilotScheduler

Asked by BKO
7 years ago.

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?

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.