In Shiny, if I have a numericInput as an input, when the user manually enters a value, it is not recognizing or respecting the max/min value and allows any number.If the user selects an arrow for the dropdown it respects the values but just not when entered manually. How can I have the manual entry respect the upper/lower value bounds?
numericInput("test", label=("TestLabel"), min=0, max=10, value="", step = 1.0),
As @HubertL pointed out it is a reported bug.
So you have two possibilities:
In case an ugly work around is useful for you until it is fixed:
Downside is that you cant change values as fast with the up/down "arrows".
Edit: Request to generalize the answer for multiple inputs: