I realize this is a simplistic example, but I wanted to get some explanation on how HandsOnTable expects to behave within a container. e.g. we have a Tab where we place HoT and we'd like it to consume 100% of the container space, but right now it doesn't appear to be constrained.
Here's an example. We'd like it constrained inside the red box.
Unfortunately the red isn't showing in the fiddle but I think what you want is the stretchH:"all"
property. This ensures that if you set a width
on the parent container, it will stretch all columns to fill it 100%. After that, you want to set the style of the container to overflow:auto
which will restrict the HOT instance to the width and height specified, and then use scroll bars after that.