Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascript plugin/form similar to google calendar repeat options [closed]

Is there a javascript plugin which replicates the same functionality as google calendar repeat options visually?

Google calendar repeat options

like image 757
ed1t Avatar asked Apr 15 '11 15:04

ed1t


1 Answers

Not exactly what you are looking for (the UI is a bit different), but there is a extension of the full calendar plugin that supports recurring events. See the demo here : http://fullcalendar.vinsol.com/

Note that the code is Ruby on Rails.

I think you might have a hard time finding a purely javascript plugin for that feature, mainly because although it isn't essential, it kind of requires some sort of database / backend code to deal with the occurences. Pure javascript solutions for a problem like recurring events will most likely be a bit hacky.

The Full Calendar Control is a great javascript control, which is easily extensible. If you have something like it running, then adding the recurring event screen really shouldn't be that big of a deal. Most calendar controls out there will already pop a window when you create an event. The markup / js for the screenshot in your question really won't be hard to write. The backend code is where you'll end up doing most of your work I think, and jQuery plugins won't help you with that.

like image 184
Hugo Migneron Avatar answered Sep 30 '22 20:09

Hugo Migneron