У меня есть простое приложение ниже. Можно ли создать раскрывающийся список для каждого столбца со значениями столбцов
---
title: "Untitled"
runtime: shiny
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
```
Column {data-width=650}
-----------------------------------------------------------------------
### Chart A
```{r}
DT::dataTableOutput('a')
output$a <- DT::renderDataTable(
iris)
```