I have created an input_action_button on a tab in my shiny app and it doesn't seem to be triggering the reactive event. I declared the button on the nav tab:
ui.nav_panel('Request a Change',
ui.input_action_button("submit", "Submit Request", class_="btn-primary")
)
and then declare the response function as follows:
Even this simple functionality doesn't execute when I click the button. Am I missing something? If it's on a tab, do I need to reference it some different way?