js-calendar
js-calendar copied to clipboard
Disable dragging
Can drag & drop be disabled? Thanks
That would be great to have, this is a neat calendar.
This is nice to have especially for displaying data in Read-only mode. For those who want to disable drag and drop feature and don't mind traversing DOM, you may try listening to the built in dragging hook. There might be a better solution but here is what I did
calendar.on('dragging', (calendar, extra) => {
extra.monthElem.classList.remove('dragged')
document.querySelectorAll('table.calendar-table > tr > td ').forEach(el => {
el.parentNode.replaceChild(el.cloneNode(true), el)
})
})