How to make a function in a for loop or lapply loop in a tabItem dashboard shiny
问题 I'm making a ShinyDashboard program and I have some troubles in finding a way to make a loop in the dashboardBody to catch MenuItems. This is a simple example of what I'm trying to fix: library(shiny) library(shinyjs) library(shinydashboard) VecNames=c("A","B","C","D","E") ui <- dashboardPage( dashboardHeader(title = "My Page"), dashboardSidebar(sidebarMenuOutput("sideBar_menu_UI")), dashboardBody( uiOutput("body_UI"), uiOutput("test_UI") ) ) server <- shinyServer(function(input, output,