You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
I'm working with dash_table.DataTable and reading the docs I found row_id in the active_cell argument. Examples on the Dash web are using it (https://dash.plot.ly/datatable/interactivity).
- active_cell (dict; optional): The row and column indices and IDs of the currently active cell.
active_cell has the following type: dict containing keys 'row', 'column', 'row_id', 'column_id'.
Those keys have the following types:
- row (number; optional)
- column (number; optional)
- row_id (string | number; optional)
- column_id (string; optional)
Hello.
I'm working with
dash_table.DataTableand reading the docs I foundrow_idin theactive_cellargument. Examples on the Dash web are using it (https://dash.plot.ly/datatable/interactivity).Context
The bug
It seems
active_cell['row_id']is not supported.This is what I get exploring the
active_celldictionaryI also have a screenshot where I force the code to get the value and get an error.