file - Shiny R inputFile as FileChooser -
note: application not meant deployed in remote server, in local machine. use shiny because it's easy create friendly user interface.
in application need select file local machine. means found file.choose()
, fileinput()
. first option work isn't user friendly because file chooser won't appear on top of browser... not new element in task bar, user confused.
1) there way this? (not using fileinput filechooser)
2) if not, there way hide uploading bar? doesn't make sense filechooser.
i don't know modify here in order hide upload bar.
edit: use other progress bars in application, i'm not sure if hiding progress-bar class hide progress <- shiny::progress$new()
as said in comment warmoverflow, that's needed.
tags$style(type="text/css", ".shiny-file-input-progress { display: none }")
Comments
Post a Comment