You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2024. It is now read-only.
Right now, table.columns[0].editable=True with table.editable=False will not make the column editable. Instead, you have to set table.editable=True, table.columns[1:].editable=False.
I think that the column-level editable flag should take precedence over the table-level editable flag.
The text was updated successfully, but these errors were encountered:
Right now,
table.columns[0].editable=True
withtable.editable=False
will not make the column editable. Instead, you have to settable.editable=True
,table.columns[1:].editable=False
.I think that the column-level
editable
flag should take precedence over the table-level editable flag.The text was updated successfully, but these errors were encountered: