Full-sized drag & drop event calendar (jQuery plugin)
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Denis Knauf faa16696d2 Makefile: Makefile instead shellscript 12 years ago
build refactored js, split into more files (much more manageable). tested 13 years ago
demos final touches for 1.5.1 13 years ago
lib using jquery 1.7, latest jquery ui, and fixed dragging bug (issue 1168) 12 years ago
src Calculate slot height based on the second row instead of first inner div. The reason we pick second row is to substract height of the first row (without border-top) to also calculate border-size. This should fix following issues: 12 years ago
tests Adding 4 weeks view 12 years ago
.gitignore small modification to tauren's parseISO8601 changes 13 years ago
GPL-LICENSE.txt Settling into Git by including a markdown README file and updating the build process DATE variable. 14 years ago
MIT-LICENSE.txt Settling into Git by including a markdown README file and updating the build process DATE variable. 14 years ago
Makefile Makefile: Makefile instead shellscript 12 years ago
README.mkd link to I18n page 12 years ago
changelog.txt Fix for Issue 1130: updateEvent backgroundColor bug 12 years ago
version.txt final touches for 1.5.2 12 years ago

README.mkd

FullCalendar - Full-sized drag & drop event calendar

Development and testing

Modify files in the src/ directory and test your changes by viewing any of the HTML files in the tests/ directory. Each test file exercises a particular aspect of FullCalendar, so you might want to create your own test file if you are developing a substantial new feature.

Building from source

You must have a Java runtime environment (accessible by the java command) for minification. Then, run make zip and check the dist/ directory for your newly created ZIP archive. To start fresh, run the make clean command.

Getting started

Assuming you have downloaded a release, or built your own, you can get started by including the following dependencies in the <HEAD> of your HTML file:

<link rel='stylesheet' type='text/css' href='fullcalendar.css' />  <!-- required stylesheet          -->
<script type='text/javascript' src='jquery.js'></script>           <!-- need jQuery >= v1.2.6        -->
<script type='text/javascript' src='fullcalendar.min.js'></script> <!-- can also use fullcalendar.js -->

If you plan to use the drag/drop/resize functionality, you must include jQuery UI draggable and resizable. You can download a custom build or use the bundled files, like so:

<script type='text/javascript' src='ui.core.js'></script>
<script type='text/javascript' src='ui.draggable.js'></script>
<script type='text/javascript' src='ui.resizable.js'></script>

Somewhere in your javascript you need to initialize a FullCalendar within a pre-existing element. Here is an example of doing it within an element having an id of calendar:

$(document).ready(function() {

	$('#calendar').fullCalendar({
		// your options here
	});

});

To see a full list of all available options, please consult the FullCalendar documentation »

I18n

To localize fullCalendar You can use i18n for jquery datepicker.

$.fullCalendar.applyLocale($.datepicker.regional['ru']);

Other texts could be modified via method setDefaults:

$.fullCalendar.setDefaults({
  buttonText: {
    month: 'month',
    week: 'week',
    day: 'day'
  }
});

See all available locales here: I18n