Is there a way to render interactive tiles in a Shiny UI?
I have an app that's meant to recommend databases to users, based on criteria they specify through input widgets. On the back end, I've got a table in which each database gets a row, so the recommendations are just the result of a filtering process.
The simple way to display the results is in a table, but that feels kind of boring. What I'd like to do instead is to populate the mainPanel
with labeled boxes that a user can click on or hover over to get more information (i.e., what would be displayed in each row in a tabular version).
Is this is a thing in Shiny? Maybe some kind of hot-rodded version of a valueBox
? Or is this the point where Shiny conks out and you need to jump to something like javascript to get it done?