Skip to content

Instantly share code, notes, and snippets.

View DzmitryGB's full-sized avatar

Dzmitry G Batrakou DzmitryGB

View GitHub Profile
@DzmitryGB
DzmitryGB / server.R
Created August 17, 2018 13:06
Shiny bug example: insertUI in a for loop
library(shiny)
library(colourpicker)
function(input,output,session) {
counter <- reactiveValues(i = NULL)
observeEvent(input$loadExample, {
counter$i <- 2
})