Creating a Javascript calendar (full, not pop-up)

I'm having difficulty creating a javascript meeting style calendar. Although he does, I know that this will be a much more efficient way to do this. Does anyone have a template that they use to create calendars? I will use jQuery, but I do not want to use a calendar plugin, since I have not found one that works for what I need, and b) I will never be better if someone works with elses.

Now keep in mind that my question is not about loading data or repeating events, but something like that. I basically need to be good at understanding the actual rendering of calendar markup.

+5
source share
5 answers

Ive just published a new OS project called FullCalendar ( http://arshaw.com/fullcalendar/ )

Looks like what you want. Pass it an array of events / appointments and it will display. The plugin provides only basic functions, but you can use event bindings to extend it.

+12
source

Start with the date.js library , why invent things like figuring out the name of the day of the week, leap years, and things like that. Create your own visualization on top of it.

+5
source

, . jQuery, , jCalendar , ​​

+2

, - elses - . ? , , . , , .

, , someones: http://kpmm.doesthatevencompile.com/calendar.htm?p=5.1.2.1 , . , .

+1

- , Javascript Date() , date.js.

You should know JS Date () (which is a custom time zone) versus server date / time and the JS era and all kinds of silly things.

I wrote calendars in the past and will not do it these days because of the efforts, but it is a good learning experience.

If you need to return to some other frame, I would suggest jQuery UI http://jqueryui.com/demos/datepicker/

+1
source

All Articles