Adding new event - keeps going back to default view, help

I’m trying to add new events several weeks ahead, each time I add a new event the scheduler adds but then sends me back to default view current week and then I have to go to the same day several weeks ahead and enter next event. This is frustrating, is there a way to stay on current day that I’ve just added an event to and not keep being sent back to current day each time?

Hello,
by default scheduler does not changes the view or date when you add event. Please show your code, or provide a demo so we could understand what’s happening

Looks like it may be this:

return RedirectToAction(“Index”, “Home”);

Going to look for the instances and change them to this:

return Redirect(returnUrl);

I’ll see if that resolves…