Scrollbar inside Page + Wizard component
See original GitHub issueDescribe the bug I am currently displaying a Wizard component inside a Page component. But unfortunately 2 scrollbars are occuring for both the Page component and the WizardStep component. disableScrolling={true} has been set in the Page component as well, but no help.
Isolated Example On codesandbox, nothing is rendered when Wizard component is added to the children field of the Page component. Seems some issue with the website. But anyway, this is how my current code structure looks like -
<Page
disableScrolling={true}
children={
<>
<Breadcrumbs>
<BreadcrumbsItem>{"Test Route 1"}</BreadcrumbsItem>
</Breadcrumbs>
<Title>{"Test Title"}</Title>
<Wizard>
<WizardStep icon="product" titleText="Product Type" selected>
<Title>1. Product Type</Title>
</WizardStep>
</Wizard>
</>
}
footer={
<Bar>
<Button>{"Button Test"}</Button>
</Bar>
}
></Page>
Screenshots

Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Scroll bar in a wizard - User Experience Stack Exchange
I have a wizard with multiple steps. In one of the steps I have to display information based on the checkbox selected. I...
Read more >Using Widgets: Vertical Scrollbar - Embedded Wizard
The Vertical Scrollbar widget is intended to show the scroll position and the height of the actually visible area (the view) within the...
Read more >Add scrollbar to JFACE Wizard - java - Stack Overflow
I have a Composite in my wizardPage and I want to add scrollbars to it if the Composite is bigger than the wizard...
Read more >No Vertical Scroll Bar In Fluid Navigation Collections For Long ...
There is no vertical scrollbar in Fluid Navigation Collection for longer pages. This is seen not just for longer component pages, ...
Read more >Scrollbars for a Window component when content will not fit ...
When you set a size to the window, there will be scrollbars if the content is larger. If there is no size set,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I’m aware of that, thanks. We still have to wait for their next release though.
Hi @mihirahlawat
when there are more than one
WizardSteps displayed, then this behavior is intended. Otherwise it wouldn’t be possible to scroll back to the previous steps. If only the first step is displayed, there shouldn’t be a scrollbar though. Since this is behavior is also happening for the Wizard without aPage, I created an issue in the UI5 Web Components repo since the component is developed by them.