search for: rendertext

Displaying 2 results from an estimated 2 matches for "rendertext".

Did you mean: render_text
2018 Nov 21
2
Promises Future en shiny no me funciona
..., textOutput("result0sec"), textOutput("result10sec") ) server <- function(input,output,session){ data0 <- eventReactive(input$go,{ heavyFunction(0) }) data10 <- eventReactive(input$go,{ future(heavyFunction(10)) }) output$result0sec <- renderText({ data <- data0() print(data) }) output$result10sec <- renderText({ data <- data10() data%...>%print() }) } shinyApp(ui,server) [[alternative HTML version deleted]]
2018 Jan 10
0
[shiny] How to read current URL address
...Error in .getReactiveEnvironment()$currentContext() : Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.) Could anyone help with this? Considering that the reactive I will not use this value to renderText or to put this values on my shiny website? Thnx [[alternative HTML version deleted]]