dash-table icon indicating copy to clipboard operation
dash-table copied to clipboard

Paste does not work on columns with editable equals true

Open oliverbrace opened this issue 3 years ago • 0 comments

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.

oliverbrace avatar Sep 28 '22 16:09 oliverbrace