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,
It seems observe won't work with renderUI :
library(shiny) library(shinymaterial) ui <- material_page( title = "Test", material_row( material_button("test", "Observe works with material_button"), uiOutput("renderUI_material_button") ) ) server <- function(input, output){ output$renderUI_material_button <- renderUI({ material_button("test2", "Observe don't works with renderUI material_buttons") }) observeEvent(input$test, { print('Material works !') }) observeEvent(input$test2, { print('Render UI material buttons works !') }) } shinyApp(ui, server)
Thanks
The text was updated successfully, but these errors were encountered:
Hi, i had this problem. No happen with default shiny button.
Sorry, something went wrong.
No branches or pull requests
Hi,
It seems observe won't work with renderUI :
Thanks
The text was updated successfully, but these errors were encountered: