Catherine S.
Catherine S.

Reputation: 229

agGroupCellRenderer - example not working, not sure how row groups are established

I tried implementing the agGroupCellRenderer here (last example on the page): https://www.ag-grid.com/javascript-grid-cell-rendering/

Has anyone been able to get it to work? I copied the code and I do not have any errors, but no table shows up. I did have to remove the import statement for ag-grid-enterprise and the rowGroup attribute in the last three headers as I do not have the Enterprise version, as well as remove the padding styling as I had gotten an error that it was unsupported.

In the example, I also am not clear on how the rowGroups are established. For reference, I am working in Angular 5.

Upvotes: 0

Views: 8703

Answers (1)

thirtydot
thirtydot

Reputation: 228162

I did have to remove the import statement for ag-grid-enterprise and the rowGroup attribute in the last three headers as I do not have the Enterprise version

Row grouping is an enterprise feature.

It is a bit unclear. If you look here, or at the menu on the left side of their site, anything with that red (e) symbol is enterprise only.

You can use the ag-grid-enterprise code for evaluation purposes if you like. Your code will probably just work if you have ag-grid-enterprise available and import it.

Upvotes: 2

Related Questions