8

Greetings, I am curious if there is any good plugin or project that allows users to add/remove event timegaps and pin the places and possibly generate some sort of output to save to the server side.

I have found today's timetable however it is not dynamic where users can slide between events or add new event to a time-gap. Either vertical or horizontal would be useful for me.

Regards

Hellnar
  • 62,315
  • 79
  • 204
  • 279

4 Answers4

5
gblazex
  • 49,155
  • 12
  • 98
  • 91
1

This looks promising: http://www.bytecyclist.com/projects/jmonthcalendar/

This might do AND it integrates with DB easily (or so they say): http://plugins.jquery.com/project/wdCalendar

naugtur
  • 16,827
  • 5
  • 70
  • 113
1

Here's one that's impressed me:

http://www.simile-widgets.org/timeline/

Spudley
  • 166,037
  • 39
  • 233
  • 307
0
I have found today's timetable however it is not dynamic where users can slide between events or add new event to a time-gap. Either vertical or horizontal would be useful for me.

But it does!! Hover on the < & > buttons to slide and see on the link in your question:

Usage

  • Initialize it
    var nameOfYourVar = newTimetable("idOfYourDiv");
  • Add an event
    nameOfYourVar.addEvent(htmlContents, startHour, duration, onClickFunction);
  • Make it scroll to a specific hour
    nameOfYourVar.goTo(hour);
  • Hours are float numbers (ex: 14h30 = 14.30 or 14.3).

Please tell me if Ive not understood what your question?

gideon
  • 19,329
  • 11
  • 72
  • 113