When using selectize in R Shiny, is it possible to capture the currently highlighted element in the selection box? From the gallery:
selectizeInput(
'e2', '2. Multi-select', choices = state.name, multiple = TRUE
)
If after selecting a few States, one then clicked on 'California':
Is is possible to the selection of 'California' captured? Use case is to trigger a filter on a datatable so that it shows only information for the selected State.
