Hello all,
As I attached. One input text and a submit button are in the same line. How can I move the submit button to the bottom so it is next to the input box?
Here is my ui code right now:
conditionalPanel(condition = "input.plot1", br(), div(
div(class = "row-fluid",
div(class = "span3",numericInput("inputK", "Input Ka (any number between 0 and 1):", 0, min = 0, max = 1)),
div(class = "span3",submitButton("OK"))))
Thank!
-Zhilan