Skip to content

Conversation

@BSd3v
Copy link
Contributor

@BSd3v BSd3v commented Jan 12, 2026

Fixes issue where components wouldnt remount when trickling down as a child prop.

eg:

import dash_mantine_components as dmc
from dash import Dash, Input, Output, State, no_update, html
from dash_ag_grid import AgGrid
app = Dash()

test = [
    AgGrid(
        id="ag-grid",
        rowData=[
            {"number": 1, "text": "a"},
        ],
        columnDefs=[
            {"field": "number", "filter": "agNumberColumnFilter"},
            {"field": "text", "filter": "agTextColumnFilter"},
        ]
    )
]

app.layout = dmc.MantineProvider(
    [
        html.Div(
            test,
        id='data-entry'
        ),
        dmc.Button('reload layout', id='reload-btn'),
    ],
    id="mantine-provider",
    defaultColorScheme="auto",
)

@app.callback(
    Output('data-entry', 'children'),
    Input('reload-btn', 'n_clicks'),
)
def reload_data(n_clicks):
    if n_clicks:
        return test
    return no_update

if __name__ == "__main__":
    app.run(debug=True)

Marc-André Rivet and others added 30 commits August 27, 2019 16:42
# Conflicts:
#	dash-renderer/package-lock.json
# Conflicts:
#	dash-renderer/package-lock.json
# Conflicts:
#	dash-renderer/package-lock.json
- update build artifacts
- update renderer artifacts
- stricten dash dependencies versions
…o iframe-sandbox-support

- Update build artifacts

# Conflicts:
#	dash-renderer/src/AccessDenied.react.js
#	dash-renderer/src/actions/index.js
#	tests/integration/renderer/test_iframe.py
 *....the prop values will not be stored with components 
 * without an ID
Added words to make the sentence valid.
Revert "Added words to make the sentence valid."
T4rk1n and others added 26 commits March 17, 2025 15:41
@BSd3v BSd3v closed this Jan 12, 2026
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

Successfully merging this pull request may close these issues.

8 participants