I have a textInput field in my shiny app. I want to have a submit button (or Action button which may make more sense?) beside the textInput, so that when text is added to the textInput, the user can click on the button and the only reaction the App takes is to take in that value (not load anything else on the page) How can this be accomplished?
If I use the following code it loads everything.
shinyUI(
textInput("variable", "Add Recomendation", ""), submitButton("Add")
)