Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class for row group doesn't change when the row is expanded contracted #896

Closed
ghost opened this issue May 10, 2016 · 3 comments
Closed

Comments

@ghost
Copy link

ghost commented May 10, 2016

Tested on https://www.ag-grid.com/example-file-browser/index.php

When I close (or open) any of the "folders" in the example, the classes for the related row doesn't change from "ag-row-group-expanded" to "ag-row-group-contracted" (and vice-versa).

@ceolter
Copy link
Contributor

ceolter commented May 11, 2016

thanks, will take a look

@randdusing
Copy link

The group row doesn't get redrawn on expand/collapse. Try this code below to force redrawing:

gridOptions.onRowGroupOpened = function (params) {
  gridOptions.api.refreshRows([params.node]);
}

@ceolter
Copy link
Contributor

ceolter commented Jan 5, 2017

fixed. will be in next release. thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants