We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @ericrayanderson
When using material_number_box inside renderUI, the number box is initialized with the label inside of the input. Any ideas how this can be resolved?
material_number_box
renderUI
Thanks again for the great package.
Reprex:
library(shiny) library(shinyjs) library(shinymaterial) ui <- material_page( useShinyjs(), uiOutput("numberBox") ) server <- function(input, output, session){ output$numberBox <- renderUI({ render_material_from_server( material_number_box("num", label = "Number", min_value = 0.001, max_value = 1000, step_size = 0.1, initial_value = .1) ) }) } shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @ericrayanderson
When using
material_number_box
insiderenderUI
, the number box is initialized with the label inside of the input. Any ideas how this can be resolved?Thanks again for the great package.
Reprex:
The text was updated successfully, but these errors were encountered: