question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Scrollbar inside Page + Wizard component

See original GitHub issue

Describe 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 image

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
Lukas742commented, Feb 21, 2022

I’m aware of that, thanks. We still have to wait for their next release though.

1reaction
Lukas742commented, Feb 10, 2022

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 a Page, I created an issue in the UI5 Web Components repo since the component is developed by them.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found