简体   繁体   中英

How to force ag-grid to take up rest of the page?

Currently the ag-grid I'm using is placed in a div, how I can maximize the ag-grid and the div containing the grid to take up the remainder of the page?

I currently have:

ag-grid {
    height: calc(100% - 75px);
    width: 100%;
}

Check and ensure your wrapper div takes the full space.

And you can use height:100% to make the ag-grid take full height of it.

Or you can use the flex way to make ag-grid to take full height;

<ag-grid-angular
    class="ag-theme-xxx height--100"
...>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM