Scrollbar issue in flex containers with multiple elements

I've got a flex container with a tree and a table. I want a single scrollbar for both components. I tried playing with overflow and grow/shrink settings with no success. What should I do?

Hi @mmadariaga, It looks like the overflow has to be applied to the

. The style prop in the designer only applies this to the parent
.

As far as I know the only way around this would be to use an advanced stylesheet or to apply the changes in the themes.

Hi, thanks for the reply, but I'm still lost here. What should I add to the stylesheet?

I finally got it working:

  • wrap = wrap, overflow = auto, overfloxX hidden for the flex container
  • height = auto on style for the tree

2 Likes