Calendar focusing on desired time

0
Hello, I'm using the Calendar widget to display the activities and appointments in week view. It automaticly starts at the top (00:00, start of the day), but I want it to start at 07:30. Now the user would have to scroll so the top of the screen starts at 07:30, which isn't desired. Is there a way to make the calendar widget focus on a certain time slot, and how? I would want the end result to look similar to this: http://imgur.com/CNW1PdR Kind Regards, Brent Vos Edit: link with screenshot
asked
2 answers
2

This is managed thru the option 'minOption' of fullCalendar which is not available as a property yet. If you know how to adapt the widget you can add it.

line 515

            eventLimit: this.limitEvents,
            minTime: "07:30:00"
        };

of course creating a property and adapting the interface is the most elegant way.

            eventLimit: this.limitEvents,
            minTime: this.minTime
        };
answered
1

There was a pull request for the Calendar widget that addresses this feature (scrollTime). I have included this: https://github.com/mendix/Calendar/commit/225167cb6dcd63ee21d59cf39c284620daf5960f

We will include this in the next release later today (waiting for some feedback on an unrelated issue first).

If there are more feature requests, please include a pull request on Github or create an issue there

answered