Hi,
I’m using dash-ag-grid 2.2.0
When running the code below, clicking a cell on one table makes it appear as selected but currently selected cell on another table becomes ‘unselected’ (at least in appearance). Any explanation or advice for working around this issue?
from dash import Dash, html, Output, Input, MATCH, dcc
from dash_ag_grid import AgGrid
app = Dash()
layout = html.Div(
[
AgGrid(
id='grid',
columnDefs=[{ "field": 'A' }, { "field": 'B' }],
rowData=[{"A": 1, "B": 2}, {"A": 3, "B": 4}],
),
AgGrid(
id='grid-2',
columnDefs=[{"field": 'A'}, {"field": 'B'}],
rowData=[{"A": 1, "B": 2}, {"A": 3, "B": 4}],
)
]
)
app.layout = layout
app.run_server()