plotly / dash-table

OBSOLETE: now part of https://github.com/plotly/dash
https://dash.plotly.com
MIT License
419 stars 74 forks source link

Feature Request: SingleDatePicker as 'dropdown' in Interactive Table #331

Open SterlingButters opened 5 years ago

SterlingButters commented 5 years ago

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**
            },
        ]
    ),
Marc-Andre-Rivet commented 5 years ago

@SterlingButters Transfering this over to the dash-table repo and linking to the data types epic (https://github.com/plotly/dash-table/issues/166)

It is in our plans to support type date/datetime and to provide a date picker presentation option.