Hello!
I am running shiny with flexdashboard. There is no error message, but the following code does not work. It was supposed to generate inline output, but it didn't.
`# '`r renderUI(list(column(width=2, selectInput(inputId="selector",label=NULL,
choices=getModel("Portfolios",portfolio()))),
column(width=2,selectInput(inputId="monthYear", label=NULL,choices=c(now)) ) ) )`
However, when I changed the code above to
```{r}
renderUI(
list(column(width=2, selectInput(inputId="selector",label=NULL,
choices=getModel("Portfolios",portfolio()))),
column(width=2,selectInput(inputId="monthYear", label=NULL,choices=c(now)) )
))
```
It shows in a seperate line.
If anyone can help me I will appreciate it! Thank you.