We should support reading the value for a format from a column. We could do this in a few ways
Check if all values are column names. If they are, add the column to always_fetch_columns
Add a *_col field for the values
Have a dataclass that has a key to indicate a value is a column. E.g. color=ui.TableColumn("X") and then the TableColumn dataclass has metadata indicating it's a column.
We should support reading the value for a format from a column. We could do this in a few ways
always_fetch_columns
*_col
field for the valuescolor=ui.TableColumn("X")
and then theTableColumn
dataclass has metadata indicating it's a column.