-1

Below is the part of UI code.I am not able to see all the selectinput in the sidebarpanel, i suspect,it is not able to scroll further or may be if the font size of the sidebarpanel has to be reduced.Any different approach which can be implemented to solve the problem?

dashboardPage(title = "title",
  dashboardHeader(title="title1"
  ),
  dashboardSidebar(tags$head(tags$style(HTML("
                      .selectize-input, .selectize-dropdown {
                        font-size:40%;
                        }                     }
                        "))), 

   radioButtons("filetype", "Select file type",choices=c("csv file","xlsx file")),  


   tags$div(title="Date format should be mm/dd/YYYY",fileInput("file1", "Upload Data File", accept = c("text/csv","text/comma-separated-values,text/plain",".csv",".xlsx",".xls"))),   

   uiOutput("col"),
   uiOutput("covariate"),
   uiOutput("dimensions1"),
   uiOutput("levels1"),
   uiOutput("dimensions2"),
   uiOutput("level2"),
   uiOutput("dimensions3"),
   uiOutput("level3"),
   uiOutput("dimensions4"),
   uiOutput("level4")


               ),
  dashboardBody(tags$head(
    tags$style(HTML(".my_class {
                      font-weight: bold;
                      color:white;
                      }")
      ))
    ,uiOutput("All_tab_Display")


  )
)
Kaverisonu
  • 101
  • 2
  • 10
  • I tried to reproduce your problem, but I was unable to. Could you please [add a reproducible example?](https://stackoverflow.com/questions/48343080/how-to-convert-a-shiny-app-consisting-of-multiple-files-into-an-easily-shareable) – Florian Feb 28 '18 at 08:10

1 Answers1

0

You'd better provide a reproducible example of your work. test this and notify me whether it helped or not:

 tags$head(
      tags$style(HTML("
                      .sidebar { height: 90vh; overflow-y: auto; font-size: 10px;}
                      " )
      )
    )
Mahdi Baghbanzadeh
  • 540
  • 1
  • 4
  • 10