Hi,
I am using calendar, smart select inside a view with pushstate: true.
The url will become #!/myView/calendar/ from #!/myView/ when the calendar is opened.
The calendar closes when browser “history.back”.
However, if user “history.forward” now, my page will turn to 404 not found.
I am thinking if this behaviour comes from the same problem like what I posted - Detail Routes’s pushstate link won’t work if master route has params?
I want my view has pushstate but not the popups (calendar, etc). Is there a way to disable the calendar’s pushstate?
I have tried some approaches but don’t work, such as
- in app init options - calendar:{ pushState: false}
- in calendar.create option
Thanks.