Recurrence Picker in AngularJS

I am developing a mobile app using ionic structure. I am looking for Recurrence Picker without jQuery and loading dependencies in AngularJS just like Google Calendar.

enter image description here

Is there a Recurrence picker plugin in AngularJS?

+3


source to share


3 answers


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 .

+1


source


There is this one that uses the rrule.js library.



0


source


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.

https://www.npmjs.com/package/ac-recurrence

enter image description here

-1


source







All Articles