I have many outputOptions setting suspendWhenHidden = FALSE
outputOptions(output, "renderui_1", suspendWhenHidden = FALSE)
outputOptions(output, "renderui_2", suspendWhenHidden = FALSE)
...
outputOptions(output, "renderui_N", suspendWhenHidden = FALSE)
This takes a lot of time
Is it possible to make this more efficient?
Didn't found it in documentation but I still haven't tried something like
outputOptions(output, c("renderui_1","renderui_2",...,"renderui_N"), suspendWhenHidden = FALSE)
Any help is appreciated