This repository was archived by the owner on Aug 29, 2025. It is now read-only.
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
editable to take precendence over table level editable? #175
Right now,
table.columns[0].editable=Truewithtable.editable=Falsewill not make the column editable. Instead, you have to settable.editable=True,table.columns[1:].editable=False.I think that the column-level
editableflag should take precedence over the table-level editable flag.