Opening tool panel in ag-grid

1.8k views Asked by At

The doc says there should be a gridOptions.showToolPanel(show) function, but in the actual object there is only a Boolean property. You can set this property true, but this has no effect on the grid.

What's the proper way to show/hide the tool panel from code?

1

There are 1 answers

1
David Cornelson On

Searched through code:

gridApi.showToolPanel(true);

Edit: or gridOptions.api.showToolPanel(true); ..if you identify [gridOptions] in your ag-grid tag.