Fork me on GitHub

Example events select with moment.js:


Dependencias

  • ~jQuery 1.7.2
  • ~Twitter Bootstrap 3.0

Options

events (array of event object)
startWeekDay (int)
default: 0
*1 for english format. Mind the dayNames.
dayNames (array)
default: ["l", "m", "x", "j", "v", "s", "d"]
*Did you change the startWeekDay? Change the order of this days then.
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)
enableSelect (boolean)
default: false
multiSelect (boolean)
default: false
displayMonthController (boolean)
default: true
displayYearController (boolean)
default: true
popoverOptions (popover Twitter Bootstrap object)
tooltipOptions (tooltip Twitter Bootstrap object)

Event object

date(string):
ex: "17/8/1989"
title (string)
ex: "Event Barberà"
link (string)
ex: "http://google.es"
color(string)
ex: "#333"
class (string)
ex: "activo congreso"
content (string)
ex: "Text for the content of popover...description of event...image..."
* if content is not defined it will be a tooltip

Event bicCalendarSelect

Response:

detail.dateFirst
12/26/1989
detail.dateLast
12/12/1992

Example code:

document.addEventListener('bicCalendarSelect', function(e) {
    moment.lang('es'); // default the language to English
    var dateFirst = new moment(e.detail.dateFirst);
    var dateLast = new moment(e.detail.dateLast);

    $('#from-day').val(dateFirst.format('LL'));
    $('#to-day').val(dateLast.format('LL'));

});
                        

Showcase

http://gettingcontacts.com

BIC Calendar


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.