Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails plugin for appointment scheduling? [closed]

HI, I have a requirement in which the person A can see a calendar of Person B and check what time is the Person B available on a particular day, and book an appointment by clicking on the Available slot. Something Like;

Monday 21st March:

9am-10 am - Not Available

10- 11 - Available

11- 12 - Available

12- 1 - Not Available

..

I tried event_calendar plugin but it gives date only and not the time slots for each day.. Are there any plugin present for Rails?

Thanks

like image 425
harshit Avatar asked Mar 21 '11 19:03

harshit


1 Answers

I see this is a bit old but I had a recent requirement for the same thing so it might help to post.

I settled on:

https://github.com/bokmann/fullcalendar-rails

Which just wraps the jquery plugin:

http://arshaw.com/fullcalendar/

Its an active project and worth a look.
Go through the demo's and you'll see its pretty nice.

You can style it up with bootstrap or jqueryUi themes, or you can customize yourself.

like image 168
jacklin Avatar answered Sep 28 '22 04:09

jacklin