Recurrence Picker in AngularJS
Here are some options I found when I was in the exact situation like the OP:
https://github.com/devmynd/angular_rrule_recurring_select
https://github.com/chouseknecht/angular-scheduler
https://github.com/jacobscarter/angular-cron-jobs
If you're using Angular's UI calendar, which currently depends on jQuery, you can flip your own hybrid directive with the jQuery plugins that are there:
fooobar.com/questions/225623 / ...
I'll probably just place an order.
Edit: I created a custom directive that allows the user to enter plain text which is processed by rrule.js .
source to share
I've tried both of the above, but they don't build, so I couldn't appreciate the UI.
https://github.com/devmynd/angular_rrule_recurring_select
https://github.com/chouseknecht/angular-scheduler
After disappointment, I discovered ac-recurrence
on npm which is a plus. I have integrated my codebase with minimal changes to my build system. The user interface looks good, but plan it a little differently.
source to share