brospars / simple-calendar

Simple calendar jquery plugin
https://brospars.github.io/simple-calendar
MIT License
49 stars 38 forks source link

reset calendar #38

Closed buzi closed 3 years ago

buzi commented 3 years ago

great plugin! is it possible to reset the calendar event data ? i tried using this calendar.empty().simpleCalendar({}) but it simply disappears and doesnt load again.

brospars commented 3 years ago

This should work :

calendar.empty().data('plugin_simpleCalendar', null).simpleCalendar()

data is added to the container to prevent multiple instantiation that could mess up events handling.

buzi commented 3 years ago

Thank you. it works perfectly. another question if you dont mind, is there a way to initialize the calendar to a specific month other than the current date ?

brospars commented 3 years ago

No but this should be simple to implement. Feel free to open a PR otherwise I'll take a look when I have some spare time.