Something like this: ``` dash_table.DataTable( id='order-table', columns=( [{'id': 'Order', 'name': 'Order'}, {'id': 'Date', 'name': 'Date', 'type': 'datepicker'}] ), data=properties_df.to_dict('rows'), editable=True, column_static_dropdown=[ { 'id': 'Date', **options here** }, ] ), ```
Something like this: