Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Paste does not work on columns with editable equals true #951

Open
@oliverbrace

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions