TreeGrid height & Width

How can I change the grid total height & width whe resizing the container element?



Thanks

To change size you can do the next
    1. change grid container size
    2. call setSizes to resize grid to container size

Code will be similar to next

    document.getElementById(‘grid_container’).style.width=NEW_WIDTH+“px”;
    mygrid.setSizes();