Updating data in a table from dcc.store component with editable=True

In the dash examples on the dcc.store page, there is one where the dash table updates when a user selects a country from the drop down menu. However if add the property editable=True, the table no longer updates after a user edits it. Is there a way around this?

Below is my code which I have slightly modified.

import collections
import dash
import pandas as pd

from dash.dependencies import Output, Input
from dash.exceptions import PreventUpdate

import dash_html_components as html
import dash_core_components as dcc
import dash_table

app = dash.Dash(name)

df = pd.read_csv(
https://raw.githubusercontent.com/
‘plotly/datasets/master/gapminderDataFiveYear.csv’)

countries = set(df[‘country’])

app.layout = html.Div([
dcc.Store(id=‘memory-output’),
dcc.Dropdown(id=‘memory-countries’, options=[
{‘value’: x, ‘label’: x} for x in countries
], multi=True, value=[‘Canada’, ‘United States’]),
dcc.Dropdown(id=‘memory-field’, options=[
{‘value’: ‘lifeExp’, ‘label’: ‘Life expectancy’},
{‘value’: ‘gdpPercap’, ‘label’: ‘GDP per capita’},
], value=‘lifeExp’),
html.Div([
dcc.Graph(id=‘memory-graph’),
dash_table.DataTable(
id=‘memory-table’,
columns=[{‘name’: i, ‘id’: i} for i in df.columns],
editable=True
),
])
])

@app.callback(Output(‘memory-output’, ‘data’),
[Input(‘memory-countries’, ‘value’)])
def filter_countries(countries_selected):
if not countries_selected:
# Return all the rows on initial load/no country selected.
return df.to_dict(‘rows’)

filtered = df.query('country in @countries_selected')

return filtered.to_dict('rows')

@app.callback(Output(‘memory-table’, ‘data’),
[Input(‘memory-output’, ‘data’)])
def on_data_set_table(data):
if data is None:
raise PreventUpdate

return data