I've looked at the documentation for dxTreeList, and it says that if I specify the height of the control (e.g. 100%
), the treelist control will constrain itself within the parent container and display the appropriate scrollbars. I've tried setting scrolling to both virtual and standard, by the way.
What I'm observing is that the control ignores the height specified altogether. For instance:
<dx-tree-list
height="40vh"
....>
Results in a treelist control that will ignore the setting, and grow in size as I expand out the nodes. This is problematic as the expanded control now scrolls well past the parent container, and when I scroll down, the field heading scroll out of view.
I'm wondering if setting the height on the control itself is not enough. Naturally, I've set the parent div for the treelist to a specific height as well (I've tried all kinds of height measures, vh, px, %, etc etc).
Would really appreciate it if anyone has any ideas or suggestions for where else I can look.