RowGroup filtered selection

Hi all,

We have dash enterprise and needed filtered selection for grouping rows.

Looking at the documentation I expected to be able to provide the following to our dag.AgGrid’s dashGridOptions.

From documentation:

const gridOptions = {
    rowSelection: {
        mode: 'multiple',
        groupSelects: 'filteredDescendants',
    },

In Dash:

        "rowSelection": {
            "mode": "multiple",
            "groupSelects": "filteredDescendants",
        },

But this did not seem to work, i assume that rowSelection only takes a single value.

What we did find, after digging into the codebase for ag-grid, is that you can set the following:
dashGridOptions={"groupSelectsFiltered": True}

Is it not possible to set the filteredDescendants through rowSelection?