My AgGrid filtering works flawless with Chrome and Opera, but in Firefox clicking on a checkbox has no effect. There are no console outputs, nor any errors.
Versions:
Python: Tested on 3.13.3 and 3.11.9
Dash: 2.18.2
Firefox: 140.0.1
OS: Win10
Minimum working Example
import dash
from dash import html
import dash_ag_grid as dag
import sys
print(sys.version)
data = [
{"Name": "Alice", "Age": 24, "Country": "USA"},
{"Name": "Bob", "Age": 30, "Country": "Canada"},
{"Name": "Charlie", "Age": 18, "Country": "UK"},
]
app = dash.Dash(__name__)
grid = dag.AgGrid(
id="my-grid",
rowData=data,
enableEnterpriseModules=True,
columnDefs=[
{"field": "Name"},
{"field": "Age"},
{"field": "Country"}
],
defaultColDef={
"filter": True,
}
)
app.layout = html.Div([grid])
if __name__ == "__main__":
print()
app.run_server(debug=True) # Access at http://127.0.0.1:8050/