Adam Shaw

Results 407 comments of Adam Shaw

#5561 is about readjusting the calendar's sizing when the OS's scrollbar width changes, which happens when you change the scrollbar setting in MacOS THIS ticket will be about hiding the...

This has been overhauled and fixed in [v7.0.0-beta.0](https://github.com/fullcalendar/fullcalendar-workspace/releases/tag/v7.0.0-beta.0)

As hard as it is to believe, this behavior is intentional. The headers above the dates in month view do not belong to any of the individual days below them....

Thanks @l3szcz , it is intended, but I'll make a task to update the docs

A potential workaround, though not ideal: detect when the user is about to resize an event that does NOT coincide with the end of a slot in the `eventResizeStart` callback....

this would be cool, or, i could see the project eventually moving towards true models: ``` var calendar = $('#cal').fullCalendar('getCalendar'); calendar.queryResources(idOrFilter).forEach(function(resource) { resource.expand(); // or .contract() }); ```

@MartijnWelker this is on my radar, but i do not have a timeline. a hack you could do in the meantime is to filter the resources in a filter function...

You may be able to get better performance if you using batchRows/unbatchRows (internal functions) to defer dimension readjustment until the very end: ``` function toggleRows(calendarElement, callback) { var view =...

@MartijnWelker, unfortunately not. it's actually further dumbed down: https://github.com/fullcalendar/fullcalendar-scheduler/blob/master/src/resource-timeline/row/RowParent.ts#L350 ^ the goal would be to prevent that line (and the equiv line like it in `collapse`) from executing until the...

in v4, we should offer a hook to manipulate the XHR before it requests. keeping this ticket open for this feature request