fullcalendar-columns icon indicating copy to clipboard operation
fullcalendar-columns copied to clipboard

Know column where you click

Open stepansib opened this issue 7 years ago • 1 comments

Cannot figure out how to determine the column i clicked (in dayClicked event closure) Please provide some help)

stepansib avatar Jun 16 '17 16:06 stepansib

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);
}

RichardD2 avatar Sep 24 '19 13:09 RichardD2