Is it possible to trigger a callback event when I select a row (or rows) of a Bokeh DataTable?
def update(rows): ... dt = DataTable(...) dt.on_select(update) I see that there is an .on_change method that can trigger on a particular property, however I can not find a property that corresponds to the selected rows.