fullcalendar-columns
fullcalendar-columns copied to clipboard
Know column where you click
Cannot figure out how to determine the column i clicked (in dayClicked event closure) Please provide some help)
Looks like it's available as the column
property on the date parameter:
dayClick: function(date, jsEvent, view) {
console.debug("Clicked", date.format(), "column", date.column);
}