I currently have callbacks updating a DataTable to repopulate the data. When a user selects a cell in the DataTable this triggers some callbacks for further display/functionality.
I currently have a callback that sets the active_cell to None when the table is repopulated, and this works fine for not feeding forward the active_cell to further callbacks with the previous table location information.
The problem is that the cell remains clicked in appearance after repopulating the table. The background of the previous active_cell still appears to be selected. I have tried making callbacks that selected_cell is None or focused_cell is False, but these do not clear the cell from appearing to be selected. Is there another property that needs to be cleared? What am I missing?