What should be used as equivalent for ScrollablePane in v9 #30598
-
The In v8
With v9
Is there an equivalent in v9 which I did not see, or is it recommended to use a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Right now we do not have an equivalent component in v9. My recommendation would be what you mentioned -- a The "DetailsList Fixed Header without ScrollablePane" example in the v8 docs site is actually a good resource for sample scrolling styles without using scrollablepane: https://developer.microsoft.com/en-us/fluentui#/controls/web/scrollablepane Let me know if that answers your question! |
Beta Was this translation helpful? Give feedback.
Right now we do not have an equivalent component in v9. My recommendation would be what you mentioned -- a
<div>
with appropriate CSS (i.e.overflow: auto
and potentially flex styles if you need a sticky header).The "DetailsList Fixed Header without ScrollablePane" example in the v8 docs site is actually a good resource for sample scrolling styles without using scrollablepane: https://developer.microsoft.com/en-us/fluentui#/controls/web/scrollablepane
Let me know if that answers your question!