Built-in gloss display :: sliderInput ()
What is the best way to make the labeldisplay part sliderInputinline (to the left of the slider), and not on top of it?
Would it be better to do this with CSS or override the way it displays as HTML?
Bonus
You can create a list of such sliders:
output$sliders <- renderUI({
lapply(vars, function (x) {
sliderInput(inputId = str_c("slider_", x), label = x)
})
})
... so what a good way to make the list of sliders displayed as <table>, with each input as <tr>(with labels in <th>and sliders in <td>s)?
This simply displays them sequentially:
uiOutput("sliders")
The preferred (tabular) alternative will look more like a mixer panel with horizontal sliders:
