Datatable select a cell

Good Morning,
Is it possible to write some bokeh server code or some CustomJs code that allows, when a cell of a datatable is selected, to assign to python variables the row, the column, its content and whether the event was a click or a double click?
Kind regards.
Mauro

Bokeh currently only reports which row is selected, and this value is recorded in the selected.indices property of the backing ColumnDataSource (i.e. exactly the same way that a selection with a selection tool on a plot shows up). There are lots of examples in the docs and the repo that demonstrate responding to selection on data sources. Some are here:

https://docs.bokeh.org/en/latest/docs/user_guide/interaction/js_callbacks.html#customjs-for-selections