I have a data table in Shiny where I need to get the data out of the cell in order to display the proper output.
By using input$tableId_cells_selected
, I am able to retrieve the location of the selected cell in the table. This is helpful, however I also need to reference what is actually in the cell to write an output function.
I found this link which may be helpful, but I was not able to apply the functionality to actually work in my Shiny server function.
Any help is appreciated.
Here is solution for you:
with
textOutput
below data table you can see the values of the selected cell...The only thing which you need to do is to use the
input$tableId_cells_selected
argument to subset the data:Next time please post reproducible example!