Nate Teetor
Nate Teetor
I am noticing updates to my JavaScript and CSS files are no longer immediately detected. Previously, I would adjust and save a resource file, call `shinyApp()`, and the updated version...
I've seen a number of people mention the verbose traceback when using `%
I noticed the `input[type="checkbox"]` elements within checkbox inputs were also getting bound as reactive inputs. This is because shiny uses a rather generic selector to find its own checkbox inputs....
Shiny by default uses a shorthand notation for inputs. ```R radioButtons( inputId = "radio1", label = "Radio input", choices = c( `Choice 1` = 1, `Choice 2` = 1 )...
> an updateFileInput would be nice! > > _Originally posted by @emmanuelsegui in https://github.com/nteetor/yonder/issues/177#issuecomment-585810561_ Shiny doesn't include an `updateFileInput()` function either. There have been a couple PRs and issues opened....
Neither shiny nor yonder have a reset input feature. Shinyjs does provide a reset feature, but the approach is hard-coded and only works on shiny's default inputs. It would be...
On v0 box shadow has been enabled by default. Textual inputs do not look great with the box shadow and need to have it removed. The shadow could be left...
The materialize library uses [noUiSlider](https://refreshless.com/nouislider/), which upon first read-through looks pretty good. noUi is maintained, has no dependencies (more importantly does not require jquery), and has quite a few options...
For improvements on the js end, inputs and outputs could use vanilla js instead of jquery.
> !! Outdated, please see comments below !! #### Description @jcheng5, after describing the current system of showing nav panes and based on my work thus far with {yonder}, I...