twinssbc / Ionic-Calendar

A calendar directive for Ionic framework
http://twinssbc.github.io/Ionic-Calendar/demo
MIT License
159 stars 73 forks source link

[Request] Recurring Events #46

Open bruno-reis opened 8 years ago

bruno-reis commented 8 years ago

I haven't found anything that mention the ability to create recurring events is this feature available in the current version? If not how difficult it would be to implement? Maybe I could try looking over your code and doing myself(and send a PR later). Or even if you could give some idea of how to implement this behavior in angular controller or service would be nice too. Cheers.

twinssbc commented 8 years ago

@bruno-reis I did consider supporting the recurring event, for example, add extra fields to indicate the recurring frequency and on which datetime slot. But it will become complicated when you modify that event as a single event, for example, you want to delete the event on a specific day while not affecting other days. So my second thought is the user should be responsible for generating the recurring events. They can easily manipulate their event source array to repeat one event multiple times. If you have better solution, feel free to let me know. Thanks!