Calendar Scroll Bars?

How do you add scroll bars to a calendar component?

Hi,

The Calendar component doesn’t provide scrollbars itself. I would recommend wrapping it with the ScrollBox component.

1 Like

Could you point me to a code example of wrapping the component?

Sure, I meant something like this:

<scrollBox height="100%" width="100%">
    <calendar .../>
</scrollBox>
1 Like

Thanks, I’ll try that. My intention was to make the hours of the calendar scroll. Will your suggestion accomplish that, or will it scroll the entire calendar component?

Hey, that worked great. Thanks