If I use AutoSizer with a Table the width is calculated to zero and so nothing but the header is rendered.
Here is the code:
http://codepen.io/sontek/pen/yVvdWw?editors=1010
AutoSizer and Table work fine together. (See them in action here.) No different than Grid or List.
In your CodePen, the html, body, and #example elements need to have a height: 100%; style set. Without that, their default height will be 0. AutoSizer does not stretch its parents; it grows to fill them. 馃槃
Most helpful comment
AutoSizerandTablework fine together. (See them in action here.) No different thanGridorList.In your CodePen, the html, body, and #example elements need to have a
height: 100%;style set. Without that, their default height will be 0.AutoSizerdoes not stretch its parents; it grows to fill them. 馃槃