How to set the selected date in scheduler mini calendar?

Hello,

I have used a mini calendar for my scheduler. It is part of the scheduler. When I click on the mini-calendar it will show the data in my scheduler but when the page is postback it return to its original value.
How can I maintain the selected date after postback?
Any idea?

Thanks!

You can enable cookie extension

  scheduler.Extensions.Add(SchedulerExtensions.Extension.Cookie); 

As result scheduler will save last visited date and view, and after reloading will restore them.

Thank you Stanislav!
I don’t want to use cookies but I already have a solution for this. I used the form state to get the selected date in the mini calendar.