In FullCalendar in week view, with touch screens (emulate touch screen to reproduce), it's possible to select event with long-touch. The delay can be configured through eventLongPressDelay
. Selected event has className
'fc-event-selected'
. And it displays dots, that can be used to adjust end-time.
I want to programmatically make event selected. E.g.
select(event.id)
I've tried to add className to event - it displays event as selected, but dots aren't working. So it's impossible to drag and drop top/bottom edge of event.
There is an issue about that, but it's still unresolved. I think there may be a way to use this internal API externally.
On screenshot you can see two dots on top and bottom edges of event. They allow to drag and drop start/end time edge. It's default dots, that appear only on touchscreens after long-touch on event.