How to avoid double scrolling in desktop web platform

This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal.

I have a form with a flex and a tab pane.

Form -> FlexContainer -> TabPane.

By default, when running the application a vertical scrollbar is displayed. However, in some cases, the content of the tabs is not displayed completely.

If I convert the flex into a FlexScrollContainer I get a double scrolling issue.

Form -> FlexScrollContainer -> TabPane.

By default, I don't know how to modify it, the dimensions for Desktop Web are set to 1280 x 900. It seems that the first (native?) vertical scrollbar will not display anything outside this area.

Could you please clarify how to avoid double scrolling by removing "default" scrollbar and leaving the FlexScrollContainer one, or making the "default" scrollbar to cover all the elements?

Thanks in advance.

Hi,

The scrollbar indicator in Flex Scroll Container is not possible to hide in Desktop Web as it's a limitation from Kony since one cannot perform any scrolling activities after hiding the vertical or horizontal indicators. In native HTML too if you set overflow to "Hidden" you cannot scroll either horizontally or vertically. To overcome the issue, instead of Flex scroll container use flex container.