Here's what I want to do -
Have clickable elements such as links and table rows.
Each click should communicate with shiny server to perform an action.
Actionbutton almost does this, but is hard to generalize to clicking table rows
Working example.
tags$a(href="#", class="action-button shiny-bound-input", id="load_url", "Load URL")),
In addition when I have multiple things that should link to the same input "clicked_url" I can't get
that data passed to the shiny server.
Perhaps actionButton could take a data value, and return a pair of "count" and "value" - or just "value" (although that
might make links unclickable if the last selected value is the current one.
tags$a(href="#", class="action-button shiny-bound-input", id="load_url", "Load URL")),
Any ideas?
-Alex