ca - BIC Calendar es un simple calendari per marcar esdeveniments. Un plugin de jQuery i Twitter Bootstrap.
en - BIC Calendar is a simple calendar to mark events, a jQuery plugin and Twitter Bootstrap.
- ~jQuery 1.7.2
- ~Twitter Bootstrap 2.0
-
popoverOptions (popover Twitter Bootstrap object)
-
tooltipOptions (tooltip Twitter Bootstrap object)
-
dayNames (array)
- default: ["l", "m", "x", "j", "v", "s", "d"]
-
monthNames (array)
- default: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"]
-
showDays (boolean)
- default: true
-
reqAjax (json array of event array)
- reqAjax.type (string) {'get', 'post'}
- reqAjax.url (string)
-
events (array of event array)
- ex:
var events = [
{
date: "28/10/2013",
title: 'SPORT & WELLNESS',
link: '',
color: '',
content: '<img src="http://gettingcontacts.com/upload/jornadas/sport-wellness_portada.png" ><br>06-11-2013 - 09:00 <br> Tecnocampus Mataró Auditori',
class: '',
}
];
$(document).ready(function() {
var monthNames = ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Dicembre"];
var dayNames = ["L", "M", "M", "J", "V", "S", "D"];
var events = [
{
date: "28/10/2013",
title: 'SPORT & WELLNESS',
link: '',
color: '',
content: '<img src="http://gettingcontacts.com/upload/jornadas/sport-wellness_portada.png" ><br>06-11-2013 - 09:00 <br> Tecnocampus Mataró Auditori',
class: '',
}
];
$('#calendari_lateral1').bic_calendar({
//list of events in array
events: events,
//enable select
enableSelect: true,
//enable multi-select
multiSelect: true,
//set day names
dayNames: dayNames,
//set month names
monthNames: monthNames,
//show dayNames
showDays: true,
//set ajax call
reqAjax: {
type: 'get',
url: 'http://bic.cat/bic_calendar/index.php'
}
//set popover options
//popoverOptions: {}
//set tooltip options
//tooltipOptions: {}
});
});
$(document).ready(function() {
document.addEventListener('bicCalendarSelect', function(e) {
alert('Hi dude! You selected from ' + e.detail.dateFirst + 'to' + e.detail.dateLast + '. Do whatever you want with these dates.');
//maybe you would like to send these data by ajax...
//$.ajax...
//or asign to a form...
//$('input').val(...
});
});
- Clear documentation
- Add all options
This is just an improved fork of http://bic.cat/bic_calendar. For more info you could check it and its branches.