--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
first =source('file.R')
first$value
--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/ca8ca86f-ccc8-43f0-aec2-5be1d322d1de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
module_names <- "../Modules/conf.ini" %>% read.ini %>% list.filter(enabled == TRUE) %>% names
for(i in seq_along(module_names)){
paste0("../Modules/",module_names[i],"/shiny_server.R") %>%
source(local=TRUE)
}
module_names <- "../Modules/conf.ini" %>% read.ini %>% list.filter(enabled == TRUE) %>% names
for(i in seq_along(module_names)){
source(paste0("../Modules/",module_names[i],"/shiny_ui.R"), local=TRUE)$value
}
Stack trace (innermost first):
47: markSelected
46: FUN
45: lapply
44: findAndMarkSelected
43: buildTabset
42: navbarPage
41: shinyUI
1: shiny::runApp
Error : attempt to set an attribute on NULL
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/dadc157e-764c-4d03-89c8-c77b8904005b%40googlegroups.com.
lapply(seq_along(module_names),
function(i){ callModule(get(module_names[i]), paste0("name",i))
}
)
lapply(seq_along(module_names),
function(i){ do.call(paste0(module_names[i],"UI"),list(id = paste0("name",i)))
}
)
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/83537fe5-0e05-405b-99d7-1bb0354faafe%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/71382f7e-7aac-48c4-8cb0-b3a3afbcfed9%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discuss+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discuss+unsubscribe@googlegroups.com.