dash-table
dash-table copied to clipboard
OBSOLETE: now part of https://github.com/plotly/dash
According [typing page](https://dash.plot.ly/datatable/typing) formatting can be configured only `type='numeric'`. I would like to use locale datetime formating for datatime. E.g. something like 'locale' in folowing example: ```python import dash import...
after backend filtering the exported data contains only 10 records my data has 20 records and but first page is exported
If the column name is wider than the width of the longest value in that column, then the column appears to automatically expand to the width of the column name....
Code to reproduce: ```python df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/solar.csv') dash_table.DataTable( columns=[{"name": i, "id": i} for i in df.columns], data=df.to_dict("rows"), row_selectable="single", filter_action="native", fixed_rows={'headers': True, 'data': 1}, fixed_columns={'headers': True, 'data': 1}, ) ``` , the `data_previous` prop is not consistently updated when copy and pasting content into a cell. While...
Changes in the forthcoming #893 need to be documented: - [#545](https://github.com/plotly/dash-table/issues/545) - Case insensitive filtering - New props: `filter_options` - to control case of all filters, `columns.filter_options` - to control...