This repository was archived by the owner on Aug 29, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 72
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Paste does not work on columns with editable equals true #951
Copy link
Copy link
Open
Description
Hi
I have noticed that
dash_table.DataTable(
id="upload-map-preview",
columns=[
{
"name": "col_1",
"id": "col_1",
"editable": False,
},
{
"name": "col_2",
"id": "col_2",
"editable":True,
},
],
)
Does not allow you to paste into the editable cell but that
dash_table.DataTable(
id="upload-map-preview",
columns=[
{
"name": "col_1",
"id": "col_1",
"editable": False,
},
{
"name": "col_2",
"id": "col_2",
},
],
editable=True,
)
Will.
I assume this isn't intended functionality.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels