Dear all,
I have written about this issue on github in the past.
( https://github.com/plotly/dash/issues/2078 )
However, I didn’t get any response on github, so I am writing on this forum as well.
In version 4.9.0 of Datatable, I was able to insert the cursor between the values by double clicking on a cell and then clicking between the values.
But since version 4.10.0 this is not possible.
Example:
import dash
import dash_table
import dash_html_components as html
app = dash.Dash(__name__)
app.layout = html.Div([
html.P(f'dash-table == {dash_table.__version__}'),
dash_table.DataTable(
id='table',
columns=(
[{'id': p, 'name': p} for p in ['Column']]
),
data=[
dict(Model=i, **{param: 1111 for param in ['Column']})
for i in range(1, 3)
],
style_header={
"backgroundColor": "black",
"color": "white",
},
style_table={
'width':'10%',
},
editable=True
)
])
if __name__ == "__main__":
app.run_server(debug=True)
Any ideas for inserting a cursor in version 4.10.0 or later of Datatable?
Thanks!